 :root {
   --ink: #1b1f1c;
   --forest: #1e4d3d;
   --moss: #3f7f5f;
   --sage: #d7e6da;
   --stone: #f5f2ed;
   --mist: #eef2ef;
   --sun: #f2b84b;
   --accent: #1f6f84;
 }
 
 * {
   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 {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .site-header {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   padding: 28px 6vw 20px 6vw;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
   font-weight: 600;
   letter-spacing: 0.04em;
 }
 
 .brand span {
   font-size: 12px;
   text-transform: uppercase;
   color: var(--moss);
 }
 
 .nav-list {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
   list-style: none;
   margin: 0;
   padding: 0;
   font-size: 14px;
 }
 
 .nav-list a {
   padding-bottom: 4px;
   border-bottom: 1px solid transparent;
 }
 
 .nav-list a:hover {
   border-color: var(--forest);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 32px 6vw 24px 6vw;
   background: linear-gradient(135deg, #eff6f1, #ffffff);
 }
 
 .hero-wrap {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-content {
   max-width: 520px;
 }
 
 .hero-eyebrow {
   text-transform: uppercase;
   font-size: 12px;
   letter-spacing: 0.2em;
   color: var(--accent);
 }
 
 .hero h1 {
   font-size: 36px;
   line-height: 1.1;
   margin: 12px 0 16px;
 }
 
 .hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid var(--forest);
   background: var(--forest);
   color: #ffffff;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--forest);
 }
 
 .button.light {
   background: #ffffff;
   color: var(--forest);
   border-color: #ffffff;
 }
 
 .hero-image {
   border-radius: 24px;
   overflow: hidden;
   position: relative;
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
 }
 
 .section {
   padding: 60px 6vw;
   position: relative;
 }
 
 .section.alt {
   background: var(--mist);
 }
 
 .section.stone {
   background: var(--stone);
 }
 
 .section-label {
   font-size: 12px;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 26px;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .offset-card {
   background: #ffffff;
   padding: 24px;
   border-radius: 20px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 .layered {
   background: linear-gradient(120deg, #ffffff 40%, var(--sage) 40%);
 }
 
 .gallery {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .gallery img {
   border-radius: 16px;
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 18px;
   border-radius: 16px;
   background: #ffffff;
   border: 1px solid rgba(0, 0, 0, 0.06);
 }
 
 .service-card h3 {
   margin: 0;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--forest);
 }
 
 .impact-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .impact-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .impact-icon {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: var(--sage);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   color: var(--forest);
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 18px;
   background: #ffffff;
   box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
 }
 
 .quote {
   font-style: italic;
 }
 
 .form-wrapper {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .service-select {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-option {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   border-radius: 14px;
   padding: 14px;
   border: 1px solid rgba(0, 0, 0, 0.12);
   background: #ffffff;
   cursor: pointer;
 }
 
 .service-option input {
   margin-top: 4px;
 }
 
 .form-fields {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid rgba(0, 0, 0, 0.2);
   font-size: 16px;
 }
 
 textarea {
   min-height: 110px;
 }
 
 .form-note {
   font-size: 14px;
   color: #46514a;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 30;
   padding: 12px 18px;
   background: var(--sun);
   color: var(--ink);
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
 }
 
 .footer {
   padding: 40px 6vw;
   background: #0f231c;
   color: #f5f7f5;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer a {
   color: #f5f7f5;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
   font-size: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
   z-index: 40;
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 12px;
 }
 
 .contact-card {
   background: #ffffff;
   padding: 24px;
   border-radius: 20px;
   box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
 }
 
 .inline-cta {
   font-weight: 600;
   color: var(--accent);
 }
 
 @media (min-width: 768px) {
   .hero-wrap {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .gallery {
     flex-direction: row;
   }
 
   .services {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 240px;
   }
 
   .impact-list {
     flex-direction: row;
   }
 
   .impact-item {
     flex: 1;
   }
 
   .form-wrapper {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .service-select,
   .form-fields {
     flex: 1;
   }
 
   .footer {
     flex-direction: row;
     justify-content: space-between;
   }
 }
