 :root {
   --ink: #1c1f1a;
   --muted: #515849;
   --accent: #235d4a;
   --accent-soft: #e7f2ee;
   --sand: #f4f1ea;
   --fog: #f7f7f4;
   --line: #d6d9d2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--fog);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 header {
   background: #fff;
   border-bottom: 1px solid var(--line);
 }
 
 .nav-bar {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 24px 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-cta {
   align-self: flex-start;
   padding: 10px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .hero {
   background: #fff;
 }
 
 .section {
   padding: 56px 20px;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .split .content {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .eyebrow {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   margin: 0;
   line-height: 1.2;
 }
 
 .hero h1 {
   font-size: 2.4rem;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 14px;
   background: var(--accent-soft);
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .cta-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 10px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .button.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 18px 40px rgba(25, 34, 24, 0.08);
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .quote {
   border-left: 3px solid var(--accent);
   padding-left: 14px;
   color: var(--muted);
 }
 
 .form-wrap {
   background: #fff;
   padding: 24px;
   border-radius: 18px;
   box-shadow: 0 18px 40px rgba(25, 34, 24, 0.12);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input, select, textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 footer {
   padding: 40px 20px;
   background: #fff;
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 16px 30px rgba(25, 34, 24, 0.2);
   font-weight: 600;
   z-index: 8;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 14px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 20px 48px rgba(25, 34, 24, 0.18);
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .page-hero {
   padding: 64px 20px 32px;
   background: #fff;
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   padding: 18px;
   border-radius: 16px;
   background: #fff;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .policy {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 860px;
 }
 
 @media (min-width: 900px) {
   .nav-bar {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .nav-links {
     flex-direction: row;
     align-items: center;
     gap: 18px;
   }
 
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .split .content {
     flex: 1;
   }
 
   .split .media {
     flex: 1;
     display: flex;
     align-items: center;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .cta-row {
     flex-direction: row;
     align-items: center;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .contact-grid > div {
     flex: 1;
   }
 }
