:root {
  --green-900: #1f4f23;
  --green-700: #2f7d32;
  --green-500: #4caf50;
  --green-100: #edf8ee;
  --ink: #1f2937;
  --muted: #4b5563;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, sans-serif;
  line-height: 1.65;
  background: linear-gradient(180deg, #f6fbf7 0%, #ffffff 28%);
}

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

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #17331a;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(47, 125, 50, 0.14);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.brand img {
  width: 176px;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-menu {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #2a3a2b;
  font-weight: 600;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--green-700);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.lang-toggle {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(47, 125, 50, 0.3);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  color: var(--green-700);
  transition: all 0.2s ease;
  flex: 0 0 auto;
}

.lang-toggle:hover {
  background: rgba(47, 125, 50, 0.08);
  border-color: rgba(47, 125, 50, 0.5);
}

.social-mini {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.social-mini a {
  text-decoration: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  color: var(--green-700);
  border: 1px solid rgba(76, 175, 80, 0.4);
  background: #f8fff8;
}

.hero {
  padding: 4.4rem 0 2.6rem;
}

.eyebrow {
  color: var(--green-700);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.08rem;
  max-width: 56ch;
}

.btn-row {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 1.35rem;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: rgba(47, 125, 50, 0.38);
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 3.1rem 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.stack-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stack-photos .photo {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
  aspect-ratio: 4 / 3;
  min-height: 190px;
}

.stack-photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-photos .tall,
.stack-photos .wide {
  aspect-ratio: 4 / 3;
}

.about > .container > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0.9rem;
}

.about p {
  margin-bottom: 1.25rem;
  max-width: 56ch;
}

.services {
  background: #fafdf9;
  border-top: 1px solid #edf4ee;
  border-bottom: 1px solid #edf4ee;
}

.services h3 {
  color: var(--green-700);
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.services h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 0.7rem;
}

.services .lead {
  max-width: 78ch;
  margin-bottom: 1.4rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid #e6efe6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  transition: transform 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card figure {
  margin: 0;
  aspect-ratio: 1 / 1;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 0.95rem;
}

.card h4 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.95rem;
}

.contact-cta {
  text-align: center;
  background: linear-gradient(160deg, #2f7d32, #1f4f23);
  color: #fff;
  border-radius: 18px;
  padding: 1.35rem;
  margin-bottom: 1.8rem;
}

.contact-cta a {
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  text-decoration: none;
}

.extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  border: 1px solid #e5efe5;
  border-radius: 14px;
  padding: 1.1rem;
  background: #fff;
}

.panel h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.quote {
  border: 1px dashed #c5ddc6;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.94rem;
  color: #305132;
  background: #f8fff8;
}

.contact-band {
  background: #f3f9f3;
  border-top: 1px solid #e1ece1;
  margin-top: 2.6rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: 1.35rem 0;
}

.call-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 300 / 217;
  width: 100%;
  max-width: 240px;
  flex: 0 0 240px;
  border: 1px solid #dceadf;
}

.call-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-lines {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  flex: 1 1 320px;
}

.contact-lines strong,
.contact-lines span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-lines strong {
  color: #223226;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #fff;
  color: var(--green-700);
  border: 1px solid #cde0ce;
  font-weight: 700;
}

footer.site-footer {
  padding: 1.4rem 0 2.2rem;
  text-align: center;
  color: #4a5a4d;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .extras {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
    order: -1;
  }

  .brand {
    order: 0;
    flex: 0 1 auto;
  }

  .lang-toggle {
    order: 1;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(47, 125, 50, 0.14);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex: none;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .nav-menu a:hover {
    background: rgba(47, 125, 50, 0.1);
  }

  .topbar-inner {
    justify-content: space-between;
  }

  .social-mini {
    display: none;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .stack-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
  }

  .stack-photos .photo {
    max-width: 100%;
    min-height: 140px;
  }

  .stack-photos .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .brand img {
    width: 120px;
  }
}
