:root {
  --green-dark: #1f3d1a;
  --green: #2d5a27;
  --green-light: #4a7a3d;
  --brown: #6b4a2f;
  --cream: #f7f5f0;
  --white: #ffffff;
  --text: #2b2b26;
  --text-light: #5a5a52;
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--green-dark); line-height: 1.2; }

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

.section { padding: 72px 0; }
.alt-bg { background: var(--cream); }
.section-sub { color: var(--text-light); margin-top: 8px; margin-bottom: 32px; max-width: 640px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--green-dark); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-call { background: var(--brown); color: var(--white); padding: 10px 20px; }
.btn-call:hover { background: #573b25; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-dark);
  white-space: nowrap;
}
.logo span { color: var(--green); font-weight: 400; }
.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-color: var(--green); color: var(--green-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(31,61,26,0.82), rgba(31,61,26,0.82)),
    repeating-linear-gradient(135deg, #2d5a27, #2d5a27 20px, #274d22 20px, #274d22 40px);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: #e8ede6; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero .btn-secondary { color: var(--white); border-color: var(--white); }
.hero .btn-secondary:hover { background: var(--white); color: var(--green-dark); }

.trust-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.trust-badges li { padding: 8px 18px; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; }

/* Emergency banner */
.emergency {
  background: var(--brown);
  color: var(--white);
  padding: 32px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.emergency-text h2 { color: var(--white); font-size: 1.35rem; margin-bottom: 6px; }
.emergency-text p { color: #f1e7dc; max-width: 560px; }
.btn-emergency {
  background: var(--white);
  color: var(--brown);
  white-space: nowrap;
}
.btn-emergency:hover { background: #f1e7dc; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e7e3da;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text p { color: var(--text-light); margin-top: 14px; }
.about-badges { display: grid; gap: 16px; }
.badge-item {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.badge-item strong { display: block; color: var(--green-dark); margin-bottom: 4px; }
.badge-item span { color: var(--text-light); font-size: 0.92rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #ece8de, #ece8de 10px, #e2ddd0 10px, #e2ddd0 20px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Area */
.area { text-align: center; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-list { list-style: none; margin: 20px 0 28px; display: grid; gap: 10px; }
.contact-list a:hover { color: var(--green); text-decoration: underline; }
.contact-map iframe { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #cfe0cb;
  text-align: center;
  padding: 28px 0;
  font-size: 0.9rem;
}
.footer-inner p { margin: 4px 0; }

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .hero h1 { font-size: 2rem; }
}
