 :root {
   --ink: #0f1b1f;
   --muted: #54656c;
   --accent: #2f7a5a;
   --accent-dark: #1f5a42;
   --sand: #f3f1ea;
   --fog: #e5ecec;
   --stone: #d6dad5;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 a:focus-visible,
 button:focus-visible,
 input:focus-visible,
 select:focus-visible,
 textarea:focus-visible {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .site-header {
   padding: 24px 6vw;
   background: var(--sand);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .nav-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .disclosure {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 56px 6vw;
   align-items: center;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-text,
 .split-media {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .split-text h1,
 .split-text h2,
 .split-text h3 {
   margin-top: 0;
 }
 
 .hero-visual,
 .impact-visual,
 .insight-visual {
   min-height: 340px;
   border-radius: 20px;
   background-size: cover;
   background-position: center;
   background-color: var(--stone);
 }
 
 .hero-visual {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
 }
 
 .impact-visual {
   background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
 }
 
 .insight-visual {
   background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   background: var(--accent);
   color: #ffffff;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 2px solid var(--accent-dark);
 }
 
 .section-strip {
   padding: 42px 6vw;
   background: var(--fog);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 20px rgba(15, 27, 31, 0.08);
 }
 
 .image-frame {
   background-color: var(--stone);
   border-radius: 16px;
   overflow: hidden;
 }
 
 .media-img {
   width: 100%;
   height: 220px;
   object-fit: cover;
   display: block;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .sticky-cta {
   background: #ffffff;
   border: 2px solid var(--accent);
   border-radius: 18px;
   padding: 20px;
   position: sticky;
   top: 24px;
 }
 
 .form-wrap {
   background: var(--sand);
   border-radius: 20px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #c9d1d0;
   font-size: 1rem;
 }
 
 .form-note {
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .quote {
   font-style: italic;
   color: var(--muted);
 }
 
 .footer {
   padding: 40px 6vw;
   background: var(--ink);
   color: #ffffff;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: #ffffff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   max-width: 360px;
   background: #ffffff;
   border: 1px solid #cbd2d0;
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .page-title {
   margin: 0 0 8px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: var(--fog);
   border-radius: 16px;
   padding: 18px;
 }
 
 .hero-inline {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 600;
 }
 
 .hero-inline img {
   width: 48px;
   height: 48px;
   border-radius: 12px;
   object-fit: cover;
   background-color: var(--stone);
 }
 
 @media (max-width: 860px) {
   .split-section {
     flex-direction: column;
   }
 
   .split-section.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     position: static;
   }
 
   .cookie-banner {
     left: 12px;
     right: 12px;
     max-width: none;
   }
 }
