 :root {
   --ink: #1d2a24;
   --muted: #4c5a53;
   --accent: #1f7a55;
   --accent-dark: #15553c;
   --sand: #f3f0ea;
   --mist: #eef4f0;
   --stone: #dde4df;
   --leaf: #cfe5d8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   width: 100%;
 }
 
 .top-bar {
   padding: 24px 6%;
   display: flex;
   flex-direction: column;
   gap: 12px;
   border-bottom: 1px solid var(--stone);
 }
 
 .nav-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 1px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 13px;
   color: var(--muted);
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   transition: background 0.2s ease;
 }
 
 .cta-button:hover {
   background: var(--accent-dark);
 }
 
 .ghost-link {
   border: 1px solid var(--accent);
   color: var(--accent);
   padding: 10px 18px;
   border-radius: 999px;
   font-weight: 600;
   transition: background 0.2s ease;
 }
 
 .ghost-link:hover {
   background: var(--leaf);
 }
 
 .hero {
   position: relative;
   padding: 70px 6% 90px;
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80")
     center/cover no-repeat;
   opacity: 0.18;
 }
 
 .hero-content {
   position: relative;
   display: flex;
   gap: 32px;
   align-items: flex-start;
 }
 
 .hero-text {
   flex: 1 1 55%;
   background: rgba(255, 255, 255, 0.92);
   padding: 32px;
   border-radius: 16px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
 }
 
 .hero-panel {
   flex: 1 1 45%;
   background: var(--sand);
   padding: 28px;
   border-radius: 16px;
   margin-top: 40px;
 }
 
 .hero-panel p {
   margin: 0 0 18px;
 }
 
 .section {
   padding: 80px 6%;
   position: relative;
 }
 
 .section.mist {
   background: var(--mist);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section.leaf {
   background: var(--leaf);
 }
 
.eco-backdrop {
  background: linear-gradient(
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.92)
    ),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80")
      center/cover no-repeat;
}

 .section-title {
   font-size: 28px;
   margin: 0 0 24px;
 }
 
 .asym-row {
   display: flex;
   gap: 40px;
   align-items: stretch;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-block {
   flex: 1 1 50%;
   background: #ffffff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
 }
 
 .asym-block.offset {
   margin-top: 40px;
 }
 
 .image-frame {
   background: var(--stone);
   border-radius: 18px;
   overflow: hidden;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .service-card {
   flex: 1 1 260px;
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .service-card img {
   border-radius: 12px;
 }
 
 .split-info {
   display: flex;
   gap: 32px;
   align-items: center;
 }
 
 .split-info .info {
   flex: 1 1 50%;
 }
 
 .split-info .aside {
   flex: 1 1 50%;
 }
 
 .form-panel {
   display: flex;
   gap: 32px;
   align-items: flex-start;
 }
 
 form {
   flex: 1 1 60%;
   background: #ffffff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
 }
 
 label {
   display: block;
   font-weight: 600;
   margin-bottom: 6px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--stone);
   font-size: 15px;
 }
 
 .form-row {
   margin-bottom: 16px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 24px;
   flex: 1 1 40%;
   background: var(--sand);
   padding: 22px;
   border-radius: 16px;
   border: 1px solid var(--stone);
 }
 
 .footer {
   padding: 50px 6%;
   background: #101a15;
   color: #e3e7e4;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
 }
 
 .footer a {
   color: #e3e7e4;
 }
 
 .legal {
   font-size: 13px;
   color: #c5cec9;
   margin-top: 24px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 24px;
   right: 24px;
   max-width: 360px;
   background: #ffffff;
   border-radius: 16px;
   padding: 20px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
   border: 1px solid var(--stone);
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1 1 50%;
   border: none;
   padding: 10px 12px;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .accept {
   background: var(--accent);
   color: #ffffff;
 }
 
 .reject {
   background: var(--stone);
   color: var(--ink);
 }
 
 .contact-grid {
   display: flex;
   gap: 32px;
   align-items: flex-start;
 }
 
 .contact-card {
   flex: 1 1 50%;
   background: #ffffff;
   padding: 24px;
   border-radius: 16px;
   box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
 }
 
 .notice {
   background: var(--leaf);
   padding: 16px 18px;
   border-radius: 12px;
   font-size: 14px;
 }
 
 @media (max-width: 960px) {
   .hero-content,
   .asym-row,
   .split-info,
   .form-panel,
   .contact-grid {
     flex-direction: column;
   }
 
   .hero-panel,
   .asym-block.offset {
     margin-top: 0;
   }
 
   .sticky-cta {
     position: static;
   }
 }
