@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #2D7A55;
  --forest-dk:#1A5C3A;
  --forest-lt:#EEF7F2;
  --cream: #FDF6EE;
  --terracotta: #C87941;
  --terra-lt: #EDD9C2;
  --text: #1C1C1A;
  --muted: #5C5C58;
  --border: #E2DDD6;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-dk);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--forest);
}

/* ── HERO ── */
.hero {
  background: var(--forest-lt);
  border-bottom: 1px solid #C8E3D6;
  padding: 5rem 2rem 4.5rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest-dk);
  max-width: 680px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-cta {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.75rem;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.15s;
}

.hero-cta:hover {
  background: var(--forest-dk);
}

/* ── SECTIONS ── */
section {
  padding: 4.5rem 2rem;
}

.section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-inner h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--forest-dk);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.section-inner p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ── WHY US ── */
.why-us {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.pillar {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--forest-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--terra-lt);
  border-radius: 2px;
  margin: 0 auto 3rem;
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
}

.about-pull {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest-dk);
  border-left: 3px solid var(--terracotta);
  padding-left: 1.25rem;
  margin: 2rem 0 1.5rem;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact {
  background: var(--forest-lt);
  border-top: 1px solid #C8E3D6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field.full {
  grid-column: 1/-1;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.form-field input,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.875rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 122, 85, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field .form-success {
  display: none;
  padding: 1.2em 1.7em;
  background: var(--forest);
  font-size: 0.9rem;
  color: var(--white);
  margin: 0.25rem 0 0;
  border-radius: 4px;
  font-weight: 500;
}

.form-submit {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.btn-submit {
  background: var(--forest);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.75rem;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-submit:hover {
  background: var(--forest-dk);
}

.btn-submit:disabled {
  background: var(--muted);
  cursor: not-allowed;
  opacity: 0.4;
}

.btn-submit:disabled:hover {
  background: var(--muted);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--forest-dk);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 1.75rem 2rem;
  font-size: 0.825rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-links {
    gap: 1.25rem;
  }
  section {
    padding: 3.5rem 1.25rem;
  }
  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
