:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --ink: #17211b;
  --muted: #5d665f;
  --green: #234234;
  --green-2: #315a46;
  --oak: #b8874a;
  --oak-soft: #ead9c1;
  --line: #ded8cc;
  --shadow: 0 20px 60px rgba(23, 33, 27, 0.10);
  --radius: 20px;
  --max: 1120px;
}

* {
  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(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 216, 204, 0.75);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--green), #102318);
  position: relative;
  box-shadow: 0 12px 28px rgba(35, 66, 52, 0.22);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 10px 13px;
  border-left: 4px solid var(--oak);
  border-bottom: 4px solid var(--oak);
  transform: rotate(-45deg);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(35, 66, 52, 0.18);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--green);
}

.hero {
  padding: 92px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 135, 74, 0.18), transparent 65%);
  right: -220px;
  top: -180px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: rgba(49, 90, 70, 0.10);
  border: 1px solid rgba(49, 90, 70, 0.14);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  margin: 20px 0 20px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin-bottom: 16px;
}

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

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  color: var(--muted);
  max-width: 680px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(35, 66, 52, 0.24);
}

.button.secondary {
  background: white;
  color: var(--green);
  border-color: var(--line);
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.status-panel {
  display: grid;
  gap: 14px;
}

.status-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(184, 135, 74, 0.16);
  color: var(--green);
  font-weight: 900;
}

.badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(49, 90, 70, 0.10);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge.warn {
  background: rgba(184, 135, 74, 0.18);
  color: #744f1e;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: #fffdf9;
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.kicker {
  color: var(--oak);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(23, 33, 27, 0.06);
}

.card.featured {
  border-color: rgba(184, 135, 74, 0.5);
  background: linear-gradient(180deg, #ffffff, #fff8ee);
}

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

.product-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.list {
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.page-hero {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf9, var(--bg));
}

.page-hero .lead {
  max-width: 820px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.callout {
  background: var(--green);
  color: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.callout p {
  color: rgba(255,255,255,0.82);
}

.callout .button {
  background: white;
  color: var(--green);
  margin-top: 18px;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.process-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.process-step::before {
  content: counter(step);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(184, 135, 74, 0.18);
  color: var(--green);
  font-weight: 900;
}

.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 800;
  color: var(--green);
}

input, select, textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fffdf9;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

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

.site-footer {
  background: #13251b;
  color: white;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.72);
}

.footer-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 20px;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .grid-2,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 62px;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    height: 68px;
  }

  .nav-links {
    inset-top: 68px;
  }

  .brand span {
    font-size: 1rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 24px;
  }

  .status-row {
    grid-template-columns: 38px 1fr;
  }

  .status-row .badge {
    grid-column: 2;
    justify-self: start;
  }
}
