 :root {
   --ink: #1c2420;
   --muted: #4b5a52;
   --soft: #eef2ef;
   --accent: #2f7a5a;
   --accent-dark: #245c45;
   --sand: #f6f2ea;
   --stone: #e1e6e1;
   --leaf: #cfe3d6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 a:hover {
   color: var(--accent-dark);
 }
 
 header {
   padding: 24px 6vw 8px;
 }
 
 .nav-bar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .hero {
   padding: 8vw 6vw 10vw;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   display: flex;
   flex-direction: column;
   gap: 24px;
   color: #f8fbf9;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 30, 25, 0.55);
 }
 
 .hero-content {
   position: relative;
   max-width: 620px;
  z-index: 1;
 }
 
 .hero-actions {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
  z-index: 1;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   background: var(--accent);
   color: #ffffff;
   border-radius: 999px;
   border: none;
   font-weight: 600;
 }
 
 .button.secondary {
   background: #ffffff;
   color: var(--accent-dark);
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent-dark);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   z-index: 10;
 }
 
 .section {
   padding: 6vw;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
.section.flow-backdrop {
  background-image: url("https://images.unsplash.com/photo-1470246973918-29a93221c455?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7f6;
  position: relative;
}

.section.flow-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 24, 0.6);
}

.flow-backdrop .asym-grid {
  position: relative;
}

 .asym-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: flex-start;
 }
 
 .asym-grid.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-text {
   flex: 1 1 320px;
   max-width: 520px;
 }
 
 .asym-media {
   flex: 1 1 280px;
   max-width: 520px;
   background: var(--leaf);
   padding: 18px;
   transform: translateY(-20px);
 }
 
 .asym-media img {
   width: 100%;
   height: 360px;
   object-fit: cover;
   display: block;
 }
 
 .stats-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .stat-card {
   flex: 1 1 180px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 12px 30px rgba(24, 38, 30, 0.08);
 }
 
 .service-list {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 20px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   box-shadow: 0 10px 26px rgba(28, 36, 32, 0.08);
 }
 
 .service-card .card-media {
   background: var(--stone);
 }
 
 .service-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   display: block;
 }
 
 .service-card .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .quote {
   background: #ffffff;
   border-left: 4px solid var(--accent);
   padding: 16px 18px;
   margin-bottom: 16px;
 }
 
 .cta-band {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
   justify-content: space-between;
 }
 
 .form-wrap {
   background: #ffffff;
   border-radius: 22px;
   padding: 24px;
   box-shadow: 0 12px 30px rgba(24, 38, 30, 0.1);
   max-width: 620px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cbd5cc;
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 footer {
   background: #101714;
   color: #eef2ef;
   padding: 5vw 6vw;
 }
 
 footer a {
   color: #cfe3d6;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   justify-content: space-between;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   padding: 10px 18px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: #ffffff;
 }
 
 .cookie-reject {
   background: #e5ece7;
   color: var(--ink);
 }
 
 .split-tiles {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .tile {
   flex: 1 1 200px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
 }
 
 .hero-image-inline {
   background: var(--leaf);
   padding: 12px;
  position: relative;
  z-index: 1;
 }
 
 .hero-image-inline img {
   width: 100%;
   height: 280px;
   object-fit: cover;
   display: block;
 }
 
.page-image {
  background: var(--stone);
  padding: 12px;
  max-width: 720px;
}

.page-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

 .page-hero {
   padding: 6vw;
   background: var(--soft);
 }
 
 .page-hero h1 {
   margin-top: 0;
 }
 
 .contact-card {
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 12px 24px rgba(28, 36, 32, 0.08);
 }
 
 @media (max-width: 720px) {
   .hero {
     padding: 16vw 6vw 18vw;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 
   .asym-media {
     transform: none;
   }
 }
