:root {
  color-scheme: light;
  --green: #0e5f4f;
  --teal: #18a999;
  --orange: #ff8a3d;
  --bg: #f8f7f2;
  --surface: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --border: rgba(31, 41, 51, 0.12);
  --shadow: 0 18px 50px rgba(14, 95, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(24, 169, 153, 0.16), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%);
}

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

.site-header,
.site-footer,
.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  box-shadow: 0 10px 24px rgba(14, 95, 79, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 800;
}

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

.button {
  border: 0;
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(14, 95, 79, 0.24);
}

.hero {
  padding-block: clamp(42px, 8vw, 84px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 138, 61, 0.14);
  color: #a4460c;
  font-size: 0.82rem;
  font-weight: 900;
}

h1 {
  max-width: 760px;
  margin: 16px 0 14px;
  font-size: clamp(2.15rem, 8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  line-height: 1.15;
}

h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  margin: 28px 0;
}

.card,
.panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
}

.panel {
  padding: clamp(22px, 4vw, 34px);
  margin: 22px 0;
}

.card p,
.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.contact-box {
  border-radius: 22px;
  padding: 22px;
  background: var(--green);
  color: white;
}

.contact-box p,
.contact-box a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 34px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

  .nav {
    justify-content: flex-start;
  }

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