:root {
  --brand-green: #2f7a37; /* main green */
  --brand-green-2: #22602b;
  --muted: #f6f7f5;
  --max-width: 1180px;
  --radius: 12px;
  --container-padding: 20px;
  --text-dark: #1f2933;
}

html {
  scroll-behavior: smooth;
}

/* SECTION: HERO */
.hero-section {
  background: linear-gradient(
                rgba(255, 255, 255, 0.4), 
                rgba(246, 247, 245, 0.4)
              ),
              url('images/background.jpg') center/cover no-repeat;
  padding: 48px var(--container-padding);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: center;
  padding: 24px;
}

/* LEFT SIDE */
.hero-left {
  padding: 12px 6px;
}

.hero-logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

/* TYPOGRAPHY */
.hero-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 2.1rem;
  color: var(--brand-green-2);
  margin: 0 0 10px 0;
  line-height: 1.05;
  font-weight: 600;
}

.hero-subline {
  color: #425055;
  font-size: 1rem;
  margin: 0 0 20px 0;
  max-width: 60ch;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary {
  background: var(--brand-green);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 6px 18px rgba(47, 122, 55, 0.12);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(47, 122, 55, 0.14);
}

.btn-outline {
  background: transparent;
  color: var(--brand-green-2);
  border: 2px solid var(--brand-green-2);
}

.btn-outline:hover {
  background: rgba(47, 122, 55, 0.06);
  transform: translateY(-2px);
}

/* RIGHT SIDE IMAGE */
.hero-right {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */

/* Tablets and below */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .hero-left {
    padding: 0;
  }

  .hero-right {
    order: -1;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-logo {
    margin: 0 auto 14px auto;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subline {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
}

/* Phones */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.38rem;
  }

  .hero-subline {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }
  .hero-image {
    display: none;
  }
}
