 :root {
   color-scheme: light;
   --bg: #f5f4ef;
   --bg-strong: #ece9e0;
   --ink: #1e2a23;
   --accent: #2e5d3b;
   --accent-soft: #d8e6d5;
   --muted: #55635a;
   --line: #d6d1c6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.55;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 header {
   padding: 24px 0 10px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   font-size: 0.95rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.78rem;
   color: var(--muted);
   border: 1px solid var(--line);
   padding: 6px 10px;
   border-radius: 999px;
   background: #fff;
 }
 
 main {
   flex: 1;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: center;
   padding: 46px 0;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1;
 }
 
 .split .visual {
   flex: 1;
   background: var(--bg-strong);
   border-radius: 20px;
   overflow: hidden;
 }
 
 .hero {
   padding-top: 28px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 0.08em;
   color: var(--muted);
 }
 
 h1 {
   font-size: clamp(2.2rem, 3vw, 3.2rem);
   margin: 12px 0 18px;
 }
 
 h2 {
   font-size: clamp(1.6rem, 2.5vw, 2.4rem);
   margin-bottom: 12px;
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 .lead {
   font-size: 1.05rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   cursor: pointer;
   font-size: 0.95rem;
   gap: 8px;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .button:hover,
 .button:focus {
   background: #23492e;
 }
 
 .button.secondary:hover,
 .button.secondary:focus {
   background: var(--accent-soft);
 }
 
 .inline-link {
   text-decoration: underline;
   color: var(--accent);
 }
 
 .band {
   padding: 52px 0;
   color: #fff;
   background-color: #2c3a31;
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .band::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(22, 32, 26, 0.55);
 }
 
 .band .container {
   position: relative;
 }
 
 .services-list {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .service-row {
   display: flex;
   gap: 26px;
   align-items: stretch;
   padding: 26px;
   border: 1px solid var(--line);
   border-radius: 18px;
   background: #fff;
 }
 
 .service-row.reverse {
   flex-direction: row-reverse;
 }
 
 .service-row .visual {
   flex: 0.9;
   background: var(--bg-strong);
   border-radius: 14px;
   overflow: hidden;
 }
 
 .service-row .text {
   flex: 1.1;
 }
 
 .price {
   font-weight: 600;
   color: var(--accent);
 }
 
 .divider {
   border-top: 1px solid var(--line);
   margin: 22px 0;
 }
 
 .form-panel {
   display: flex;
   gap: 28px;
   align-items: flex-start;
   padding: 30px;
   border-radius: 18px;
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .form-panel form {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 0.95rem;
   font-family: inherit;
 }
 
 .form-note {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 footer {
   background: #1d261f;
   color: #e8efe9;
   padding: 30px 0 40px;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   justify-content: space-between;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-size: 0.9rem;
 }
 
 .footer-note {
   font-size: 0.82rem;
   color: #c6d1c9;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 8px;
   display: flex;
   gap: 10px;
   align-items: center;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
   z-index: 20;
 }
 
 .sticky-cta span {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions .button {
   padding: 10px 14px;
   font-size: 0.85rem;
 }
 
 .bg-garden-2 {
   background-image: url("https://images.pexels.com/photos/36812343/pexels-photo-36812343.jpeg");
 }
 
 .muted {
   color: var(--muted);
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--accent-soft);
   color: var(--accent);
   font-size: 0.85rem;
 }
 
 @media (max-width: 900px) {
   .split,
   .service-row,
   .form-panel,
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
     flex-direction: column;
     align-items: flex-start;
   }
 }
