 :root {
   --ink: #1c2a22;
   --muted: #5b6a62;
   --accent: #2f6b4f;
   --accent-dark: #23533c;
   --sand: #f4f1ea;
   --mist: #eef3ef;
   --stone: #d9e1da;
   --leaf: #c7d8c8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   text-decoration: underline;
 }
 
 header {
   background: var(--sand);
   padding: 20px 28px;
 }
 
 .topbar {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .brand-row {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   font-size: 13px;
   color: var(--muted);
   background: var(--mist);
   padding: 6px 12px;
   border-radius: 16px;
 }
 
 nav {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 nav a {
   font-size: 14px;
   color: var(--ink);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   gap: 28px;
   padding: 56px 28px;
 }
 
 .split-section.alt {
   background: var(--mist);
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content,
 .split-media {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .split-content h1,
 .split-content h2 {
   margin-top: 0;
 }
 
 .eyebrow {
   font-size: 12px;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 .lead {
   font-size: 18px;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 24px;
   background: var(--accent);
   color: #ffffff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .btn[disabled] {
   opacity: 0.6;
   cursor: not-allowed;
 }
 
 .inline-link {
   font-weight: 600;
 }
 
 .img-frame {
   background: var(--leaf);
   border-radius: 16px;
   overflow: hidden;
 }
 
 .img-frame img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .service-stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   padding: 16px;
   border-radius: 16px;
   background: #ffffff;
   border: 1px solid var(--stone);
 }
 
 .service-card .card-media {
   flex: 1 1 140px;
   min-width: 140px;
 }
 
 .service-card .card-body {
   flex: 2 1 200px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .testimonial {
   padding: 16px;
   border-left: 3px solid var(--accent);
   background: #ffffff;
 }
 
 .form-panel {
   background: #ffffff;
   border-radius: 16px;
   padding: 24px;
   border: 1px solid var(--stone);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--stone);
   font-size: 14px;
   font-family: inherit;
 }
 
 .selected-service {
   display: inline-block;
   padding: 6px 12px;
   background: var(--mist);
   border-radius: 14px;
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 20;
 }
 
 footer {
   background: var(--sand);
   padding: 28px;
   font-size: 14px;
   color: var(--muted);
 }
 
 footer .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border: 1px solid var(--stone);
   padding: 16px;
   border-radius: 14px;
   display: none;
   z-index: 30;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 .cookie-banner.show {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .legal-wrap {
   max-width: 820px;
   margin: 0 auto;
   padding: 48px 28px;
 }
 
 .legal-wrap h1 {
   margin-top: 0;
 }
 
 .notice-card {
   background: var(--mist);
   padding: 18px;
   border-radius: 12px;
 }
 
 @media (max-width: 820px) {
   .split-section {
     padding: 36px 20px;
   }
 
   header {
     padding: 16px 20px;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
