:root {
   color-scheme: light;
   --ink: #1f1f1f;
   --muted: #5b5b5b;
   --accent: #3c6b5a;
   --accent-soft: #e3ece7;
   --sand: #f4f1eb;
   --stone: #d9d4cc;
   --shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .site-header {
   padding: 24px 6%;
   background: var(--sand);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .brand-row {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
   padding: 6px 12px;
   border: 1px solid #c9c3ba;
   border-radius: 999px;
   background: #ffffff;
 }
 
 .site-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .site-nav a {
   color: var(--ink);
   text-decoration: none;
   font-weight: 600;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 32px;
   padding: 64px 6%;
 }
 
 .split--reverse {
   flex-direction: row-reverse;
 }
 
 .split--tint {
   background: var(--sand);
 }
 
 .split__content {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .split__media {
   flex: 1 1 320px;
   min-width: 280px;
   padding: 16px;
   border-radius: 20px;
   background: var(--stone);
   box-shadow: var(--shadow);
 }
 
 .split__media img {
   width: 100%;
   height: 360px;
   object-fit: cover;
   border-radius: 16px;
 }
 
 .hero-title {
   font-size: clamp(2rem, 4vw, 3.2rem);
   line-height: 1.15;
   margin: 0 0 20px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 24px;
 }
 
 .btn {
  display: inline-block;
   background: var(--accent);
   color: #ffffff;
   border: none;
   border-radius: 999px;
   padding: 12px 22px;
   font-weight: 600;
   cursor: pointer;
  text-decoration: none;
 }
 
 .btn-light {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin: 24px 0 0;
 }
 
 .service-card {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   padding: 16px;
   border-radius: 16px;
   background: #ffffff;
   box-shadow: var(--shadow);
 }
 
 .service-card__media {
   flex: 0 0 140px;
   height: 120px;
   border-radius: 12px;
   overflow: hidden;
   background: #d7e0da;
 }
 
 .service-card__media img {
   width: 140px;
   height: 120px;
   object-fit: cover;
 }
 
 .service-card__body {
   flex: 1 1 220px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .inline-highlight {
   background: var(--accent-soft);
   padding: 8px 12px;
   border-radius: 12px;
   display: inline-block;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin: 20px 0 0;
 }
 
 .step {
   display: flex;
   gap: 12px;
 }
 
 .step-number {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--accent);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .form-box {
   background: #ffffff;
   padding: 24px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin-bottom: 16px;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfd3cf;
   font-size: 1rem;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 20px;
 }
 
 .testimonial {
   padding: 12px 16px;
   border-left: 4px solid var(--accent);
   background: #ffffff;
 }
 
 .site-footer {
   padding: 40px 6%;
   background: #f1f1f1;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   z-index: 20;
 }
 
 .sticky-cta button {
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   background: #23352d;
   color: #ffffff;
   cursor: pointer;
 }

.sticky-cta a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #23352d;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid #d8d8d8;
   padding: 16px 6%;
   display: none;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .cookie-actions button {
   border-radius: 999px;
   border: 1px solid var(--accent);
   padding: 8px 16px;
   cursor: pointer;
   background: #ffffff;
   color: var(--accent);
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: var(--accent);
   color: #ffffff;
 }
 
 .notice {
   font-size: 0.95rem;
   color: var(--muted);
 }
