:root {
  --green: #4f6f52;
  --deep-green: #2f4a35;
  --sage: #dfe8d8;
  --pale-sage: #f1f5ee;
  --ivory: #fbfaf4;
  --warm-white: #ffffff;
  --charcoal: #2e302b;
  --muted: #62665c;
  --gold: #b8914b;
  --border: #d7dccf;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
}

a { color: var(--deep-green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.narrow { max-width: 820px; }

.site-header {
  background: rgba(251, 250, 244, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  color: var(--deep-green);
  font-weight: 700;
  letter-spacing: .02em;
}

.tagline {
  color: var(--muted);
  font-size: .85rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .95rem;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 600;
}

.nav-button, .button {
  display: inline-block;
  border-radius: 999px;
  padding: .75rem 1.15rem;
  font-weight: 700;
  text-align: center;
  transition: transform .15s ease, background .15s ease;
}

.nav-button {
  background: var(--green);
  color: white !important;
}

.button:hover, .nav-button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

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

.secondary {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--deep-green);
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(251,250,244,.95), rgba(251,250,244,.72), rgba(251,250,244,.35)),
    radial-gradient(circle at top right, var(--sage), transparent 40%),
    var(--pale-sage);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  max-width: 760px;
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: .5rem;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  color: var(--deep-green);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: .25rem 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  margin: 1.25rem 0 .35rem;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--charcoal);
  max-width: 680px;
}

.button-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.soft {
  background: var(--pale-sage);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro p, .page-hero p {
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

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

.card, .feature-panel, .contact-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 10px 26px rgba(47, 74, 53, .08);
}

.card h3:first-child, .feature-panel h2:first-child {
  margin-top: 0;
}

.split-grid, .two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.image-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--border);
  border-radius: 24px;
  color: var(--muted);
  background: var(--pale-sage);
}

.text-link {
  font-weight: 800;
  color: var(--deep-green);
}

.cta {
  background: var(--deep-green);
  color: white;
  text-align: center;
}

.cta h2 { color: white; }

.page-hero {
  background: var(--pale-sage);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}

.process-list li {
  margin-bottom: .75rem;
}

.section-subblock {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.note {
  color: var(--muted);
  font-style: italic;
}

.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 2.5rem 0;
}

.site-footer a {
  color: var(--sage);
}

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

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

  .main-nav {
    gap: .75rem;
  }

  .card-grid.four,
  .card-grid.two,
  .split-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 560px) {
  .main-nav a:not(.nav-button) {
    width: 45%;
  }

  .nav-button, .button {
    width: 100%;
  }
}