* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #f6f4ee, #2e791a);
  color: #1f2a1f;
  line-height: 1.5;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background: rgba(246, 244, 238, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: visible;
}

/* BURGER */
.burger {
  width: 44px;
  height: 44px;
  border: none;
  background: #2f5d3a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 11px;
  cursor: pointer;
  flex-shrink: 0;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 999px;
}

/* BRAND */
.brand h1 {
  font-size: 1.05rem;
  line-height: 1.1;
  color: #23442b;
}

.brand p {
  font-size: 0.82rem;
  color: #7c7c7c;
  margin-top: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  background: #23442b;
  display: flex;
  flex-direction: column;
  padding: 10px 16px 16px;
  gap: 8px;
  transform: translateY(-120%);
  transition: transform 0.25s ease;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 110px 20px 40px;
  display: flex;
  align-items: end;
  background-image: url("https://images.unsplash.com/photo-1591857177580-dc82b9ac4e1e?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 28, 20, 0.72), rgba(20, 28, 20, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  color: #ffffff;
}

.hero-content h2 {
  font-size: 2.1rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.92;
  margin-bottom: 10px;
}

.eyebrow.green {
  color: #3d6b47;
  opacity: 1;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  background: #7bb661;
  color: #102010;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

/* SECTIONS */
.services-section,
.contact-section {
  padding: 34px 16px 100px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: 1.8rem;
  line-height: 1.1;
  color: #23442b;
}

/* SERVICE CARDS */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  width: 100%;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(30, 45, 30, 0.12);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 18px 18px 22px;
}

.service-card-content h3 {
  font-size: 1.28rem;
  color: #23442b;
  margin-bottom: 8px;
}

.service-card-content p {
  font-size: 0.98rem;
  color: #536053;
}

/* CONTACT */
.contact-section {
  background: #e8efe3;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d3dbcf;
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 1rem;
  color: #1f2a1f;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-btn {
  width: 100%;
  text-align: center;
  padding: 16px 18px;
}

/* VINES */
.header-vine-full {
  position: absolute;
  top: 85%;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("imgs/vines.png");
  background-repeat: repeat-x;
  background-size: auto 80px;
  opacity: 1; /* kept exactly as you set */
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s ease;
}

body.menu-open .header-vine-full {
  opacity: 0;
}

/* BACKGROUND BLOBS */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: -1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: #0e8414;
  top: 100px;
  left: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: #116214;
  bottom: -120px;
  right: -100px;
}

/* FLOATING QUOTE BUTTON */
.quote-floating-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: #23442b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(24, 36, 24, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.quote-floating-btn:hover {
  transform: translateY(-2px);
  background: #2d5636;
}

.quote-floating-btn:active {
  transform: translateY(0);
}

.quote-floating-btn.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .site-header {
    padding: 0 24px;
  }

  .hero {
    padding: 130px 32px 60px;
  }

  .hero-content h2 {
    font-size: 3rem;
    max-width: 700px;
  }

  .services-section,
  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-card img {
    height: 340px;
  }

  .brand h1 {
    font-size: 1.5rem;
  }
}