:root {
  --green-dark: #1E3F27;
  --green: #2E5E3E;
  --green-mid: #4A8340;
  --lime: #8BC34A;
  --lime-light: #A8D96B;
  --cream: #F4F1E8;
  --bg: #FBFAF6;
  --bg-alt: #EFF5E9;
  --ink: #1D2A20;
  --ink-soft: #5B6960;
  --gold: #FFC94A;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(30, 63, 39, 0.08);
  --shadow-lg: 0 20px 50px rgba(30, 63, 39, 0.16);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.2;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-lg); }

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-ghost:hover { background: var(--green-dark); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--green-dark);
}
.btn-light:hover { background: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* Announce bar */
.announce-bar {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 16px;
}
.announce-bar a { color: var(--gold); font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 63, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark svg { width: 38px; height: 38px; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #FBFAF6;
  box-shadow: 0 0 0 2px rgba(30, 63, 39, 0.08);
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-mark { box-shadow: 0 0 0 2px rgba(244, 241, 232, 0.25); }
.logo-text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--green-dark);
}
.logo-text strong { font-weight: 800; }
.logo-text.light { color: #fff; }

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover { color: var(--green); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(139, 195, 74, 0.25), transparent 45%),
    linear-gradient(160deg, #EFF5E9 0%, #FBFAF6 55%, #FDF7E8 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  margin: 12px 0 18px;
}
.hero-copy h1 span { color: var(--green); }
.hero-copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.hero-art { max-width: 420px; margin: 0 auto; }
.hero-art svg, .why-us-art svg { width: 100%; height: auto; }
.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.why-us-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Trust strip */
.trust-strip {
  background: var(--green-dark);
  padding: 26px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--lime);
}
.trust-item span {
  font-size: 0.85rem;
  color: rgba(244, 241, 232, 0.75);
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(30, 63, 39, 0.08);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Why us */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.why-us-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.why-us-copy > p { color: var(--ink-soft); margin-bottom: 34px; max-width: 520px; }
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.feature-list h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-list p { color: var(--ink-soft); font-size: 0.92rem; }
.why-us-art { max-width: 380px; margin: 0 auto; width: 100%; }
.why-us-art svg { border-radius: 24px; }

/* Service area */
.service-area-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.service-area-card svg { color: var(--green); flex-shrink: 0; }
.service-area-card h4 { margin-bottom: 6px; }
.service-area-card p { color: var(--ink-soft); font-size: 0.92rem; }
.service-area-card a { color: var(--green); font-weight: 700; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  padding: 60px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 6px; }
.cta-banner p { color: rgba(244, 241, 232, 0.85); }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 30px; max-width: 460px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; }
.contact-list a:hover { color: var(--green); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row-split .form-row { margin-bottom: 18px; }
label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--green-dark);
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(30, 63, 39, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
}
textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

.form-status {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 10px;
  min-height: 1.2em;
}
.form-status-success { color: var(--green); }
.form-status-error { color: #B3261E; }

/* Footer */
.site-footer { background: var(--green-dark); color: rgba(244, 241, 232, 0.85); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p { margin: 14px 0 20px; font-size: 0.9rem; max-width: 300px; }
.footer-brand .social-links a { background: rgba(244, 241, 232, 0.1); color: #fff; }
.footer-brand .social-links a:hover { background: var(--lime); color: var(--green-dark); }
.footer-col h5 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(244, 241, 232, 0.12);
  padding: 20px 0;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(244, 241, 232, 0.6);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-art { order: -1; max-width: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-art { order: -1; max-width: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }
  .services-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .cta-banner-inner { text-align: center; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand .social-links { justify-content: center; }
  .service-area-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .announce-bar p { font-size: 0.72rem; }
}
