 :root {
   color-scheme: light;
   --bg: #f4f7f2;
   --bg-alt: #e8efe5;
   --bg-dark: #1e2a24;
   --text: #1f2a24;
   --muted: #5a6a61;
   --accent: #3f7c59;
   --accent-2: #6ea27a;
   --card: #ffffff;
   --sand: #f0ece3;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 6vw;
   gap: 20px;
 }
 
 .nav-left,
 .nav-right {
   display: flex;
   align-items: center;
   gap: 18px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   align-items: stretch;
   padding: 40px 6vw 60px;
   gap: 40px;
 }
 
 .hero-text {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-image {
   flex: 0.9;
   background: #c9d6c1;
   border-radius: 24px;
   overflow: hidden;
   min-height: 360px;
 }
 
 .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
   background: transparent;
   cursor: pointer;
   font-weight: 600;
 }
 
 .button.primary {
   background: var(--accent);
   color: #ffffff;
 }
 
 .section {
   padding: 60px 6vw;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .section.dark {
   background: var(--bg-dark);
   color: #f5f7f3;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .panel.image {
   background: #d7e0d0;
   border-radius: 20px;
   overflow: hidden;
   min-height: 280px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 20px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 18px;
   box-shadow: 0 18px 40px rgba(15, 25, 20, 0.08);
 }
 
 .card .thumb {
   background: #d6ded2;
   border-radius: 14px;
   overflow: hidden;
   height: 140px;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service {
   flex: 1 1 260px;
   background: #ffffff;
   padding: 18px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   position: relative;
 }
 
 .service button {
   margin-top: auto;
 }
 
 .floating-cta {
   position: sticky;
   top: 12px;
   margin: 0 6vw;
   background: #ffffff;
   border-radius: 18px;
   padding: 12px 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   box-shadow: 0 16px 32px rgba(20, 30, 24, 0.12);
   z-index: 3;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--sand);
   padding: 28px;
   border-radius: 20px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #cfd8cf;
   font-size: 1rem;
   font-family: inherit;
   background: #ffffff;
 }
 
 .footer {
   padding: 40px 6vw 60px;
   background: #e2e8dd;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .legal {
   font-size: 0.9rem;
   color: #4a5a52;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   right: 20px;
   left: 20px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
   display: none;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   box-shadow: 0 20px 40px rgba(12, 20, 16, 0.18);
   z-index: 99;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .notice {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .image-band {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .image-band img {
   flex: 1 1 220px;
   border-radius: 16px;
   background: #d5dfd4;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(63, 124, 89, 0.12);
   color: var(--accent);
   font-weight: 600;
   font-size: 0.85rem;
 }
 
 .gridless-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .gridless-columns > div {
   flex: 1 1 260px;
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: #ffffff;
   padding: 18px;
   border-radius: 16px;
 }
 
 @media (max-width: 900px) {
   .hero,
   .split {
     flex-direction: column;
   }
 
   .floating-cta {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }
 }
