 :root {
   --bg: #f7f6f2;
   --ink: #1f2a24;
   --muted: #5b6a60;
   --accent: #2e7d4f;
   --accent-soft: #e4efe8;
   --sand: #f0e8dc;
   --olive: #dbe3d7;
   --stone: #e6e3de;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 input:focus,
 select:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .container {
   width: min(1140px, 92%);
   margin: 0 auto;
 }
 
 header {
   padding: 24px 0 8px;
 }
 
 .nav-bar {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
 }
 
 .ad-label {
   padding: 4px 10px;
   border-radius: 999px;
   background: var(--sand);
   font-size: 12px;
   color: var(--muted);
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   padding: 54px 0;
   align-items: center;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-section .col {
   flex: 1 1 320px;
 }
 
 .section-title {
   font-size: clamp(24px, 3vw, 36px);
   margin-bottom: 16px;
 }
 
 .hero {
   min-height: 60vh;
   display: flex;
   align-items: center;
   background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.95), rgba(247, 246, 242, 0.3)), url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 64px 0;
 }

.hero-about {
  min-height: 46vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.95), rgba(247, 246, 242, 0.4)), url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 56px 0;
}

.hero-services {
  min-height: 46vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.96), rgba(247, 246, 242, 0.5)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 56px 0;
}

.hero-contact {
  min-height: 42vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.96), rgba(247, 246, 242, 0.6)), url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.hero-thanks {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.96), rgba(247, 246, 242, 0.6)), url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.hero-legal {
  min-height: 34vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.98), rgba(247, 246, 242, 0.65)), url("https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}

.hero-gdpr {
  min-height: 34vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.98), rgba(247, 246, 242, 0.65)), url("https://images.unsplash.com/photo-1500522144261-ea64433bbe27?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}

.hero-cookies {
  min-height: 34vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.98), rgba(247, 246, 242, 0.65)), url("https://images.unsplash.com/photo-1506806732259-39c2d0268443?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}

.hero-terms {
  min-height: 34vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 246, 242, 0.98), rgba(247, 246, 242, 0.65)), url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}
 
 .hero-card {
   background: rgba(255, 255, 255, 0.9);
   padding: 32px;
   border-radius: 20px;
   max-width: 560px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .btn {
   border: none;
   border-radius: 999px;
   padding: 12px 22px;
   font-weight: 600;
   cursor: pointer;
   background: var(--accent);
   color: #fff;
 }
 
 .btn.secondary {
   background: var(--accent-soft);
   color: var(--accent);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-item {
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .image-frame {
   background: var(--olive);
   border-radius: 18px;
   overflow: hidden;
 }
 
.bg-olive {
  background: var(--olive);
}

.bg-stone {
  background: var(--stone);
}

.bg-sand {
  background: var(--sand);
}

.bg-mist {
  background: #e3efe7;
}

 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .stat {
   flex: 1 1 160px;
   background: var(--sand);
   padding: 18px;
   border-radius: 14px;
 }
 
 .accent-block {
   background: var(--accent-soft);
   padding: 32px;
   border-radius: 20px;
 }
 
 .form-card {
   background: #fff;
   padding: 24px;
   border-radius: 20px;
   box-shadow: 0 18px 40px rgba(31, 42, 36, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #cfd7cf;
   font-size: 15px;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .inline-note {
   font-size: 14px;
   color: var(--muted);
 }
 
 footer {
   padding: 36px 0 100px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: #fff;
   border-radius: 999px;
   padding: 10px 18px;
   box-shadow: 0 12px 30px rgba(31, 42, 36, 0.15);
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 4;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   bottom: 16px;
   max-width: 360px;
   background: #fff;
   border-radius: 18px;
   padding: 16px;
   box-shadow: 0 12px 30px rgba(31, 42, 36, 0.15);
   z-index: 5;
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions .btn {
   padding: 8px 16px;
 }
 
 .hero-inline {
   background: var(--stone);
   padding: 28px;
   border-radius: 18px;
 }
 
 .bg-canopy {
   background-color: #e3efe7;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .bg-canopy .accent-block {
   background: rgba(255, 255, 255, 0.92);
   color: var(--ink);
 }
 
 .divider {
   height: 1px;
   background: #d8ded6;
   margin: 24px 0;
 }
 
 .notice {
   background: var(--sand);
   padding: 18px;
   border-radius: 14px;
 }
 
 .simple-hero {
   background: var(--olive);
   padding: 40px 0;
 }
 
 .text-stack {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .image-tall {
   height: 360px;
 }
 
 .image-wide {
   height: 260px;
 }
 
 .image-medium {
   height: 300px;
 }
 
 .image-small {
   height: 220px;
 }
 
 .legal-body {
   padding: 40px 0 60px;
 }
 
 .legal-body h2 {
   margin-top: 28px;
 }
 
 @media (max-width: 760px) {
   .sticky-cta {
     left: 16px;
     right: 16px;
     justify-content: space-between;
   }
 
   .hero-card {
     padding: 24px;
   }
 }
