/* Base styles */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2620;
  background: #f4f6f3;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: #e4eee3;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Header / nav */

header {
  background: #111a12;
  color: #f4f6f3;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #f4f6f3;
}

.logo span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.8;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

header nav a {
  color: #e1ebe0;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

header nav a:hover {
  background: #1f2a21;
}

header nav a.current {
  background: #7abf7c;
  color: #081107;
}

/* Typography */

h1, h2, h3 {
  margin: 0 0 0.6rem;
  color: #101710;
}

h1 {
  font-size: 2.05rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.1rem;
}

/* Cards & boxes */

.card {
  background: #ffffff;
  border-radius: 0.8rem;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 10px 25px rgba(6, 15, 8, 0.08);
}

.highlight {
  margin-top: 1.8rem;
  padding: 1.3rem 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid #c5dbc4;
  background: #f1f7f0;
}

/* Checklist list */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #2f7d37;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: #2f7d37;
  border-color: #2f7d37;
  color: #f4f6f3;
}

.btn-primary:hover {
  background: #255f2b;
}

.btn-outline {
  background: transparent;
  border-color: #2f7d37;
  color: #19461e;
}

.btn-outline:hover {
  background: #d8ead8;
}

/* Section headers */

.section-header {
  margin-bottom: 1.4rem;
}

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5c6c5b;
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.55rem;
}

/* CTA band */

.cta-band {
  background: #122015;
  color: #f5f7f3;
  padding: 2rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.cta-band-inner p {
  margin: 0.3rem 0 0;
  color: #ced9cf;
}

@media (max-width: 720px) {
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Forms */

form {
  margin-top: 0.6rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  color: #3b463c;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid #c4d2c4;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

textarea {
  min-height: 140px;
}

input:focus,
textarea:focus {
  outline: 2px solid #88c189;
  outline-offset: 1px;
  border-color: #88c189;
}

/* Contact page simple layout (for new contact.html) */

.contact-section {
  padding: 3rem 1.25rem 3.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.contact-section h2 {
  margin-bottom: 0.5rem;
}

/* Footer */

footer {
  border-top: 1px solid #d1dfd0;
  padding: 1.1rem 0;
  font-size: 0.85rem;
  background: #f5f7f4;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: #405540;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Links */

a {
  color: #245f2c;
}

a:hover {
  color: #1b4521;
}
