:root {
  color-scheme: light;
  --forest: #1c5232;
  --forest-deep: #103021;
  --leaf: #2f9e4f;
  --lime: #9be05d;
  --moss: #e8f3df;
  --ink: #15211a;
  --muted: #59685f;
  --paper: #ffffff;
  --cream: #f6f8f2;
  --white: #ffffff;
  --line: #e4ebdf;
  --gold: #d6a93b;
  --shadow-sm: 0 6px 24px rgba(16, 48, 33, 0.08);
  --shadow: 0 24px 60px rgba(16, 48, 33, 0.16);
  --shadow-lg: 0 40px 90px rgba(16, 48, 33, 0.22);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1200px;
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(16, 48, 33, 0.1);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.brand .logo-green { display: none; }
.site-header.scrolled .brand .logo-white { display: none; }
.site-header.scrolled .brand .logo-green { display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: color 160ms ease, background 160ms ease;
}
.site-header.scrolled .nav-links a { color: var(--ink); }

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a:focus-visible,
.site-header.scrolled .nav-links a.is-active {
  color: var(--forest);
  background: var(--moss);
}

.nav-cta,
.site-header.scrolled .nav-cta {
  color: var(--white);
  background: var(--leaf);
  padding: 11px 20px;
  box-shadow: 0 12px 26px rgba(47, 158, 79, 0.32);
}
.nav-cta:hover { background: var(--forest); color: var(--white); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  cursor: pointer;
}
.site-header.scrolled .menu-toggle { background: var(--moss); color: var(--forest); }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }

.btn-primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(47, 158, 79, 0.36);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--forest); }

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.btn-dark { background: var(--forest); color: var(--white); box-shadow: 0 16px 34px rgba(28, 82, 50, 0.24); }
.btn-dark:hover { background: var(--forest-deep); }

.btn-light { border-color: var(--line); background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); }
.btn-light:hover { border-color: var(--leaf); }

.btn-icon { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(11, 33, 21, 0.92) 0%, rgba(13, 40, 26, 0.7) 42%, rgba(13, 40, 26, 0.25) 75%, rgba(13, 40, 26, 0.1) 100%),
    linear-gradient(to top, rgba(11, 28, 18, 0.55), transparent 45%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 150px 0 110px;
  max-width: 1200px;
}
.hero-copy { max-width: 720px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(155, 224, 93, 0.25);
}

h1 {
  margin: 22px 0 20px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.hero h1 .accent { color: var(--lime); }

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
}
.hero-stats div span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11, 33, 21, 0.9), rgba(13, 40, 26, 0.55));
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 170px 0 90px;
}
.page-hero-copy { max-width: 760px; }
.page-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-cream { background: var(--cream); }
.section-dark {
  background: linear-gradient(160deg, var(--forest-deep), #16261c);
  color: var(--white);
}
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--leaf);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-dark .kicker { color: var(--lime); }

h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.78); }

/* ---------- Trust strip ---------- */
.trust {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}
.trust-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item {
  padding: 30px 26px;
  text-align: center;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--forest);
  line-height: 1;
}
.trust-item span { color: var(--muted); font-weight: 600; font-size: 0.92rem; }

/* ---------- Service cards (photo) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 240ms ease, box-shadow 240ms ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card-body p { color: var(--muted); margin-bottom: 18px; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 700;
}
.card-link svg { width: 18px; height: 18px; transition: transform 200ms ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.split-badge strong { display: block; font-family: var(--font-display); color: var(--forest); font-size: 1.5rem; line-height: 1; }
.split-badge span { color: var(--muted); font-size: 0.85rem; font-weight: 600; }

.feature-list { display: grid; gap: 18px; margin: 28px 0 32px; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.feature-list strong { display: block; margin-bottom: 2px; font-family: var(--font-display); }
.feature-list p { color: var(--muted); margin: 0; }
.check {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--moss);
  color: var(--forest);
  font-weight: 900;
}
.section-dark .feature-list p { color: rgba(255,255,255,0.76); }
.section-dark .check { background: rgba(255,255,255,0.1); color: var(--lime); }

/* ---------- Carousel ---------- */
.carousel { position: relative; }
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.carousel-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 9;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 40px 32px;
  background: linear-gradient(to top, rgba(11, 28, 18, 0.85), transparent);
  color: var(--white);
}
.carousel-caption h3 { font-size: 1.5rem; margin-bottom: 4px; }
.carousel-caption p { margin: 0; color: rgba(255, 255, 255, 0.85); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 180ms ease, transform 180ms ease;
  z-index: 3;
}
.carousel-btn:hover { background: var(--leaf); color: #fff; }
.carousel-btn svg { width: 24px; height: 24px; }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.carousel-dots button {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}
.carousel-dots button.active { width: 30px; border-radius: 999px; background: var(--leaf); }

/* ---------- Gallery (uniform grid) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-cell {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-cell:hover img { transform: scale(1.07); }
.gallery-cell::after {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c5232' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center / 20px no-repeat;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 240ms ease, transform 240ms ease;
}
.gallery-cell:hover::after { opacity: 1; transform: scale(1); }
.gallery-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(11,28,18,0.85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  opacity: 0;
  transition: opacity 240ms ease;
}
.gallery-cell:hover .gallery-cap { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 20, 13, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.open .lightbox-figure { transform: scale(1); }
.lightbox-figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-figure figcaption {
  margin-top: 14px;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-close svg { width: 26px; height: 26px; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-nav svg { width: 28px; height: 28px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 46px; height: 46px; bottom: 24px; top: auto; transform: none; }
  .lightbox-prev { left: 30%; }
  .lightbox-next { right: 30%; }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: grid; place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: rgba(255, 255, 255, 0.78); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
blockquote {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
blockquote p { font-size: 1.05rem; color: var(--ink); flex: 1; }
blockquote footer { margin-top: 18px; color: var(--forest); font-family: var(--font-display); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(11, 33, 21, 0.86), rgba(13, 40, 26, 0.9));
}
.cta-inner {
  position: relative; z-index: 2;
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 110px 0;
}
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; margin-bottom: 32px; }
.cta-inner .section-actions { justify-content: center; }

/* ---------- Service detail rows ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.svc-row + .svc-row { border-top: 1px solid var(--line); }
.svc-row:nth-child(even) .svc-row-media { order: 2; }
.svc-row-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.svc-row-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row h3 { font-size: 1.7rem; margin-bottom: 12px; }
.svc-row p { color: var(--muted); margin-bottom: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--moss);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 16px; max-width: 820px; margin: 0 auto; }
.faq-item {
  padding: 26px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { margin-bottom: 8px; font-size: 1.15rem; }
.faq-item p { margin: 0; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-details { display: grid; gap: 14px; margin-top: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--cream);
}
.contact-detail .ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--moss);
  color: var(--forest);
}
.contact-detail .ic svg { width: 22px; height: 22px; }
.contact-detail span { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-detail strong, .contact-detail a { color: var(--forest); font-size: 1.08rem; font-weight: 700; }

form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; color: var(--forest); font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
input, textarea, select {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(47, 158, 79, 0.14);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Areas ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.areas span {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.areas span::before { content: "📍"; }
.area-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.area-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 72px 0 36px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255, 255, 255, 0.75); transition: color 160ms ease; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  width: min(100% - 32px, var(--max));
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}

.sticky-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(47, 158, 79, 0.4);
  transition: transform 180ms ease, background 180ms ease;
}
.sticky-cta:hover { transform: translateY(-3px); background: var(--forest); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .area-grid, .svc-row, .svc-row:nth-child(even) .svc-row-media,
  .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media, .svc-row:nth-child(even) .svc-row-media { order: 0; }
  .contact-panel { grid-template-columns: 1fr; padding: 36px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 80px 0 auto;
    display: none;
    flex-direction: column;
    padding: 20px;
    background: rgba(13, 40, 26, 0.98);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { width: 100%; color: #fff; }
  .site-header.scrolled .nav-links a { color: #fff; }
  .cards-grid, .testimonials, .steps, .form-row, .areas { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero-inner { padding: 120px 0 80px; }
  .hero-stats { gap: 24px; }
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-caption { padding: 40px 20px 22px; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-inner .btn { width: auto; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .contact-panel { padding: 26px; }
  .hero-stats div strong { font-size: 1.8rem; }
}

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