 :root {
   color-scheme: light;
   --ink: #1a1a1a;
   --muted: #5a5a5a;
   --accent: #0f6b6b;
   --accent-soft: #e6f2f1;
   --paper: #f7f4ef;
   --sand: #efe9e0;
   --clay: #d8d1c7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   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;
 }
 
 .site-header {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   padding: 20px 8vw;
   background: #fff;
   border-bottom: 1px solid #e0d9cf;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .site-nav {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: #6a5d53;
   background: var(--sand);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .section {
   padding: 56px 8vw;
 }
 
 .section.alt {
   background: #fff;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .content,
 .split .media {
   flex: 1 1 320px;
 }
 
 .hero-title {
   font-size: 2.4rem;
   margin-bottom: 12px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .media {
   background-color: var(--clay);
   border-radius: 22px;
   overflow: hidden;
   min-height: 280px;
 }
 
 .media img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   margin-top: 20px;
 }
 
 .btn {
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   cursor: pointer;
   font-size: 1rem;
 }
 
 .btn.secondary {
   background: var(--accent-soft);
   color: var(--accent);
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 0;
   margin: 18px 0 0;
   list-style: none;
 }
 
 .layered {
   color: #fff;
   background-color: #24333a;
   background-image: url("https://images.unsplash.com/photo-1484704849700-f032a568e944?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .layered::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 26, 30, 0.62);
 }
 
 .layered .split {
   position: relative;
   z-index: 1;
 }
 
 .card-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-card {
   display: flex;
   gap: 16px;
   background: #fff;
   border-radius: 18px;
   padding: 16px;
   align-items: center;
   box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
 }
 
 .card-image {
   background-color: var(--clay);
   width: 120px;
   height: 90px;
   border-radius: 12px;
   overflow: hidden;
   flex-shrink: 0;
 }
 
 .card-image img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .step {
   background: var(--sand);
   padding: 14px 16px;
   border-radius: 14px;
 }
 
 .testimonial {
   background: #fff;
   padding: 16px 18px;
   border-radius: 16px;
   margin-top: 12px;
 }
 
 .service-buttons {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin: 16px 0;
 }
 
 .form-card {
   background: #fff;
   padding: 22px;
   border-radius: 18px;
   box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
 }
 
 form label {
   display: block;
   margin: 14px 0 6px;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px;
   border-radius: 10px;
   border: 1px solid #cfc7bd;
   font-size: 1rem;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .footer {
   padding: 40px 8vw;
   background: #1f2426;
   color: #f1ede7;
 }
 
 .footer a {
   color: #c7f0ed;
 }
 
 .footer-links {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 10px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   padding: 12px 16px;
   border-radius: 999px;
   border: none;
   background: #efb041;
   color: #1a1a1a;
   cursor: pointer;
   box-shadow: 0 8px 24px rgba(26, 26, 26, 0.2);
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: #fff;
   padding: 16px;
   border-radius: 14px;
   box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
   max-width: 320px;
   display: none;
   z-index: 5;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 10px;
 }
 
 .legal-block {
   background: #fff;
   padding: 26px;
   border-radius: 18px;
   box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
 }
 
 .muted {
   color: var(--muted);
 }
 
 .simple-list {
   padding-left: 18px;
 }
