:root {
  --cfm-green: #0b5e2b;
  --cfm-green-dark: #083f1d;
  --cfm-light-green: #84c441;
  --cfm-ink: #132018;
  --cfm-muted: #68766c;
  --cfm-line: #e5eee3;
  --cfm-soft: #f4faf1;
  --cfm-bg: #ffffff;
  --cfm-radius: 20px;
  --cfm-shadow: 0 18px 50px rgba(11, 94, 43, 0.1);
  --cfm-shadow-hover: 0 28px 70px rgba(11, 94, 43, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7fbf5;
  color: var(--cfm-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: #fff;
}
.cfm-container {
  width: min(1440px, calc(100% - 36px));
  margin-inline: auto;
}
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 15px;
  background: var(--cfm-green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
  background: var(--cfm-green-dark);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 94, 43, 0.22);
}
.cfm-content {
  padding-block: 54px;
}
.cfm-page,
.cfm-single-post,
.cfm-post-card {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--cfm-line);
  border-radius: var(--cfm-radius);
  background: #fff;
  box-shadow: var(--cfm-shadow);
}
.cfm-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cfm-section-head {
  margin: 48px 0 22px;
}
.cfm-section-head h2,
.cfm-archive-head h1,
.cfm-page h1,
.cfm-single-post h1 {
  margin: 0;
  color: var(--cfm-green);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}
.cfm-kicker {
  margin: 0 0 8px;
  color: var(--cfm-light-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.woocommerce-notices-wrapper {
  width: min(1440px, calc(100% - 36px));
  margin: 18px auto 0;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 18px;
  border: 1px solid var(--cfm-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 94, 43, 0.07);
}
