:root {
  --green: #0b6b42;
  --green-deep: #06442d;
  --yellow: #f5c84b;
  --ink: #19211c;
  --muted: #657167;
  --paper: #fbfaf6;
  --line: #d8dfd6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
  color: var(--yellow);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px) 56px;
  background:
    linear-gradient(110deg, rgba(11, 107, 66, 0.08), transparent 45%),
    radial-gradient(circle at 85% 18%, rgba(245, 200, 75, 0.28), transparent 28%);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.lead {
  max-width: 640px;
  color: #344238;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  color: var(--green);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.intro > p,
.split p,
.contact p {
  color: #405045;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  background: #eef4eb;
}

.info-list {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.74);
}

.info-list p {
  margin: 0;
}

.contact {
  align-items: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 64px);
  background: var(--green-deep);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.legal-page p,
.legal-page li {
  color: #405045;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.96rem;
  }

  .hero-actions,
  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
