/* ============ Tokens ============ */
:root {
  --green-900: #1f2e1d;
  --green-700: #33502e;
  --green-500: #4c7444;
  --sand-100: #f6f3ea;
  --sand-50: #fbfaf5;
  --gold-500: #c99b3f;
  --ink: #22261f;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(31, 46, 29, 0.08);
  --font-display: "Georgia", "Iowan Old Style", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 16px; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; color: var(--green-900); }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-900); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--green-900);
  text-decoration: none;
}
.logo span { color: var(--gold-500); }
.main-nav { display: flex; gap: 32px; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 500; }
.main-nav a:hover { color: var(--green-700); }
.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(--ink); }

/* ============ Hero ============ */
.hero { background: var(--sand-100); padding: 72px 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text h1 { font-size: 2.75rem; color: var(--green-900); }
.hero-text p { font-size: 1.15rem; color: #4a4f43; margin-bottom: 28px; }
.hero-media img { box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ============ About ============ */
.about { padding: 88px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.about-text h2 { color: var(--green-900); font-size: 2rem; }
.about-text p { color: #4a4f43; }

/* ============ Services ============ */
.services { padding: 88px 0; background: var(--sand-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 0; }
.service-card-body { padding: 20px; }
.service-card h3 { font-size: 1.15rem; color: var(--green-900); margin-bottom: 8px; }
.service-card p { color: #5a5f52; font-size: 0.95rem; margin: 0; }

/* ============ Testimonials ============ */
.testimonials { padding: 88px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--sand-100);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card .stars { color: var(--gold-500); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; color: #3d4136; margin-bottom: 16px; }
.testimonial-card .name { font-weight: 600; color: var(--green-900); }

/* ============ Contact ============ */
.contact { padding: 88px 0; background: var(--green-900); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info p { margin-bottom: 12px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form button { align-self: flex-start; }

/* ============ Footer ============ */
.site-footer {
  background: #14200f;
  color: #cdd4c6;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .hero-inner, .about-inner, .contact-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid #eee;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
}
