:root {
  --bg: #eef7ee;
  --surface: #ffffff;
  --surface-alt: #f7fbf5;
  --text: #153d23;
  --muted: #4c6c53;
  --accent: #2f7f46;
  --accent-strong: #225f36;
  --border: #dfe7dd;
  --shadow: 0 24px 80px rgba(15, 41, 25, 0.08);
  --radius: 28px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #eef9ef 0%, #eef7ee 100%);
  color: var(--text);
  line-height: 1.7;
}

/* Headings use a more formal serif for a professional tone */
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, #1f5c3f 0%, #12482c 100%);
  color: white;
  padding: 1.15rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 14px 32px rgba(15, 22, 47, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #7bb270;
  color: #0f2d18;
  font-weight: 800;
  border-radius: 16px;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.site-nav a:hover {
  color: white;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-header h1,
.hero-copy h2,
.section-heading h2,
.quote-card p,
.process-card h3,
.service-card h3 {
  margin: 0;
}

.site-header h1 {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 36rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0 2rem;
}

.hero-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero-copy p {
  color: #425c46;
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-image {
  position: relative;
}

.hero-panel {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.hero-panel img {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover;
}

.hero-caption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-panel h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.hero-panel p {
  color: var(--muted);
}

.hero-image {
  position: relative;
}

.hero-panel {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2rem;
}

.hero-panel h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article,
.process-card,
.quote-card,
.stats-card,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 18px 60px rgba(19, 47, 76, 0.05);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(181, 143, 44, 0.04), transparent 40%);
  pointer-events: none;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.stats-card {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(181, 143, 44, 0.12), rgba(255, 255, 255, 0.95));
}

.stat span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.highlight-section {
  background: rgba(255, 255, 255, 0.82);
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.align-center {
  align-items: center;
}

.quote-card p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.quote-card span {
  color: var(--muted);
}

.trust-list {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.trust-list h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.trust-list ul {
  margin: 0;
  padding: 0 0 0 1rem;
  color: var(--muted);
}

.trust-list li {
  margin-bottom: 0.45rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-card {
  padding: 1.8rem;
}

.process-card h3 {
  margin-bottom: 1rem;
}

.process-card p {
  color: var(--muted);
}

.contact-panel {
  background: rgba(47, 127, 70, 0.08);
  padding: 4rem 0;
}

.contact-grid {
  align-items: start;
  gap: 2rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.contact-details li {
  margin-bottom: 0.9rem;
}

.package-note {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-sm);
  background: #f4f5f9;
  border: 1px solid var(--border);
  color: var(--muted);
}

.contact-note {
  margin-top: 1rem;
  color: var(--muted);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  font-weight: 600;
}

.form-message--success {
  background: rgba(181, 143, 44, 0.15);
  color: #5f481d;
}

.form-message--error {
  background: rgba(255, 77, 77, 0.12);
  color: #8c1d1d;
}

.hidden {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-tagline {
  font-weight: 600;
  color: #3e4b6b;
}

@media (max-width: 960px) {
  .hero,
  .two-column,
  .three-column,
  .four-column,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .hero-copy h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }
}
