 :root {
   --ink: #1b1f1d;
   --muted: #5a6760;
   --accent: #2f7b57;
   --accent-dark: #21543d;
   --soft: #eef2ee;
   --sand: #f6f3ee;
   --rose: #f2e8e9;
   --sun: #fff3d9;
   --shadow: 0 18px 40px rgba(27, 31, 29, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 .page {
   overflow: hidden;
 }
 
 .top-strip {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 6vw;
   border-bottom: 1px solid #e4e9e4;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: linear-gradient(135deg, #3d8f67, #bddfce);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   color: #ffffff;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 15px;
 }
 
 .nav-links a {
   padding: 8px 0;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 56px 6vw 40px;
 }
 
 .hero-panel {
   background: var(--soft);
   padding: 30px;
   border-radius: 22px;
   box-shadow: var(--shadow);
 }
 
 .hero-panel h1 {
   font-size: 34px;
   line-height: 1.15;
   margin-bottom: 14px;
 }
 
 .hero-panel p {
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #ffffff;
 }
 
 .btn-ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent-dark);
 }
 
 .hero-image {
   position: relative;
   border-radius: 28px;
   overflow: hidden;
   min-height: 260px;
 }
 
 .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .hero-caption {
   position: absolute;
   right: 16px;
   bottom: 16px;
   background: rgba(255, 255, 255, 0.85);
   padding: 10px 14px;
   border-radius: 14px;
   font-size: 13px;
 }
 
 .section {
   padding: 50px 6vw;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .section.deep {
   background: var(--soft);
 }
 
 .section-title {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 18px;
   margin-bottom: 24px;
 }
 
 .section-title h2 {
   font-size: 28px;
   margin: 0;
 }
 
 .section-title p {
   color: var(--muted);
   max-width: 420px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .offset-card {
   background: #ffffff;
   padding: 24px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .offset-card h3 {
   margin-top: 0;
 }
 
 .stats-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: #ffffff;
   padding: 20px;
   border-radius: 18px;
   border-left: 4px solid var(--accent);
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   background: #ffffff;
   border-radius: 22px;
   padding: 22px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-card img {
   border-radius: 16px;
   height: 160px;
   object-fit: cover;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step-icon {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: var(--sun);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .testimonial {
   background: #ffffff;
   padding: 18px;
   border-radius: 16px;
   border: 1px solid #e5eae5;
 }
 
 .form-wrapper {
   background: #ffffff;
   border-radius: 26px;
   padding: 26px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d3dbd5;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .form-note {
   font-size: 13px;
   color: var(--muted);
 }
 
 .cta-strip {
   display: flex;
   flex-direction: column;
   gap: 12px;
   align-items: flex-start;
   background: var(--rose);
   padding: 26px;
   border-radius: 22px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 100;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 10px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 16px;
   bottom: 90px;
   background: var(--accent-dark);
   color: #ffffff;
   padding: 12px 16px;
   border-radius: 999px;
   font-size: 14px;
   z-index: 90;
 }
 
 footer {
   padding: 36px 6vw 60px;
   background: #0f1512;
   color: #d6e2db;
 }
 
 footer a {
   color: #d6e2db;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: 14px;
 }
 
 .legal {
   font-size: 12px;
   color: #9fb0a6;
   margin-top: 18px;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .contact-card {
   background: #ffffff;
   padding: 20px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   padding: 6px 10px;
   border-radius: 999px;
   background: var(--sun);
 }
 
 .gallery {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .gallery img {
   border-radius: 18px;
   height: 180px;
   object-fit: cover;
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-panel {
     flex: 1.1;
   }
 
   .hero-image {
     flex: 0.9;
     transform: translateY(20px);
   }
 
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .offset-card {
     flex: 1;
   }
 
   .stats-row {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .services {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 calc(50% - 18px);
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1;
   }
 
   .timeline {
     flex-direction: row;
   }
 
   .timeline-step {
     flex: 1;
     flex-direction: column;
   }
 
   .cta-strip {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .footer-links {
     flex-direction: row;
     gap: 18px;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .contact-card {
     flex: 1;
   }
 
   .gallery {
     flex-direction: row;
   }
 
   .gallery img {
     flex: 1;
   }
 }
