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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  min-width: 375px;
  background: #f4f8f2;
  color: #2c3e2d;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

/* ── Shared ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #2c4a2e;
}

.section-sub {
  text-align: center;
  color: #6b8f6e;
  margin-bottom: 50px;
  font-size: 18px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.alt-bg {
  background: #e8f0e4;
}

.btn-primary {
  display: inline-block;
  background: #4a7c59;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #3a6347;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f4f8f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #c8ddc4;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #2c4a2e;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #4a7c59;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2c4a2e;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #2c4a2e;
  font-size: 26px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  background: #c8ddc4 center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 248, 242, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4a7c59;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  color: #2c4a2e;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: #4a7c59;
  margin-bottom: 36px;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.img-placeholder {
  width: 100%;
  height: 450px;
  background: #c8ddc4;
  border-radius: 8px;
  overflow: hidden;
}

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

.about-text h2 {
  text-align: left;
  margin-bottom: 24px;
}

.about-text p {
  color: #4a5e4b;
  margin-bottom: 16px;
  font-size: 16px;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #f4f8f2;
  border: 1px solid #c8ddc4;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 24px;
  color: #2c4a2e;
  margin-bottom: 12px;
}

.service-card p {
  color: #4a5e4b;
  font-size: 15px;
  margin-bottom: 16px;
}

.service-duration {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4a7c59;
  text-transform: uppercase;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #e8f0e4;
  border-left: 3px solid #4a7c59;
  border-radius: 4px;
  padding: 30px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: #2c4a2e;
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #4a7c59;
  letter-spacing: 1px;
}

/* ── Contact ── */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: #f4f8f2;
  border: 1px solid #c8ddc4;
  border-radius: 6px;
  color: #2c3e2d;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4a7c59;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ── Footer ── */
.footer {
  background: #2c4a2e;
  color: #c8ddc4;
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #f4f8f2;
}

.footer-location {
  font-size: 14px;
  color: #8fb892;
}

.footer-copy {
  font-size: 13px;
  color: #6b8f6e;
}

.footer-copy a {
  color: #8fb892;
  text-decoration: none;
}

.footer-copy a:hover {
  color: #f4f8f2;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #f4f8f2;
    padding: 20px 40px;
    gap: 20px;
    border-bottom: 1px solid #c8ddc4;
  }

  .nav-links.open {
    display: flex;
  }

  .hero h1 {
    font-size: 34px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 32px;
  }
}
