:root {
  --green: #315b37;
  --green-dark: #203d25;
  --brown: #a85c32;
  --blue: #1859ad;
  --cream: #f7f4ee;
  --white: #ffffff;
  --ink: #1d2520;
  --muted: #66716a;
  --shadow: 0 20px 50px rgba(29, 37, 32, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(49, 91, 55, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-dark);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hamburger {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 9px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  display: block;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 86px;
  right: 6vw;
  width: min(340px, 88vw);
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(49, 91, 55, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-menu a:hover {
  background: rgba(49, 91, 55, 0.1);
}

.section {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 70px 0;
}

.page-hero {
  padding: 90px 6vw 70px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.05;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brown);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: #f0c6a6;
}

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(49, 91, 55, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

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

.btn.secondary {
  color: var(--green-dark);
  background: var(--white);
}

.muted {
  color: var(--muted);
}

.site-footer {
  padding: 28px 6vw;
  text-align: center;
  color: var(--white);
  background: var(--green-dark);
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(49, 91, 55, 0.24);
  border-radius: 14px;
  font: inherit;
}

label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 800;
}

.form-message {
  min-height: 24px;
  font-weight: 800;
}

.site-footer {
    background: #0f3d2e;
    color: #ffffff;
    text-align: center;
    padding: 18px 12px;
    margin-top: 40px;
    font-size: 14px;
}
