 :root {
   --ink: #1f2a1f;
   --muted: #4b5a4c;
   --accent: #2f6b4f;
   --accent-soft: #e7f1eb;
   --sand: #f4f1ea;
   --light: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--ink);
   background: var(--sand);
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   width: 100%;
 }
 
 .site-header {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 24px 6vw;
   background: var(--light);
   border-bottom: 1px solid #d9e0d4;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 15px;
 }
 
 .ad-label {
   font-size: 13px;
   color: var(--muted);
   max-width: 260px;
 }
 
 .hero {
   padding: 36px 6vw 24px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   justify-content: space-between;
   gap: 32px;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .copy {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .split .media {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .image-frame {
   background: #dfe7df;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .callout {
   background: var(--accent-soft);
   padding: 24px;
   border-radius: 16px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 20px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   background: var(--accent);
   color: var(--light);
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-size: 15px;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   padding: 40px 6vw;
 }
 
 .section.alt {
   background: var(--light);
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--light);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 8px 24px rgba(20, 35, 20, 0.08);
   display: flex;
   flex-direction: column;
 }
 
 .card-body {
   padding: 16px 18px 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .section-title {
   margin: 0 0 12px;
 }
 
 .bg-panel {
   background-size: cover;
   background-position: center;
   background-color: #d9e4d6;
   border-radius: 20px;
   min-height: 220px;
 }
 
 .bg-panel.garden-path {
   background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
 }
 
 .bg-panel.tools {
   background-image: url("https://images.unsplash.com/photo-1473773508845-188df298d2d1?w=1400&q=80");
 }
 
 .form-card {
   background: var(--light);
   padding: 24px;
   border-radius: 16px;
   box-shadow: 0 10px 24px rgba(24, 40, 24, 0.1);
 }
 
 .form-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .field {
   display: flex;
   flex-direction: column;
   gap: 6px;
   flex: 1 1 220px;
 }
 
 .field input,
 .field select,
 .field textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cbd6c7;
   font-size: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--accent);
   color: var(--light);
   padding: 10px 16px;
   border-radius: 999px;
   box-shadow: 0 10px 24px rgba(20, 35, 20, 0.2);
   z-index: 10;
 }
 
 .site-footer {
   padding: 32px 6vw 56px;
   background: #1e2a22;
   color: #d5e0d4;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 12px;
 }
 
 .footer-links a {
   color: #cfe3d5;
 }
 
 .disclaimer {
   margin-top: 18px;
   font-size: 13px;
   color: #b7c7bb;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #142218;
   color: #e6efe7;
   padding: 18px 6vw;
   display: none;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .cookie-actions button {
   border-radius: 999px;
   padding: 8px 14px;
   border: 1px solid #cfe3d5;
   background: transparent;
   color: #e6efe7;
   cursor: pointer;
 }
 
 .content-narrow {
   max-width: 980px;
   margin: 0 auto;
 }
