 :root {
   color-scheme: light;
   --ink: #1c2a24;
   --muted: #4b5e54;
   --accent: #2f6f4e;
   --accent-dark: #24543b;
   --surface: #f4f7f2;
   --layer: #e3efe7;
   --sun: #d9c7a8;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }

 a {
   color: var(--accent);
   text-decoration: none;
 }

 a:hover,
 a:focus {
   color: var(--accent-dark);
 }

 header {
   padding: 28px 6vw 10px;
 }

 .topbar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }

 .brand {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: lowercase;
 }

 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
 }

 nav {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
 }

 nav a {
   font-weight: 600;
 }

 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 40px 6vw 60px;
   align-items: center;
 }

 .hero-text {
   flex: 1 1 340px;
   max-width: 520px;
 }

 .hero-text h1 {
   font-size: clamp(2.1rem, 3vw, 3.1rem);
   margin-bottom: 16px;
 }

 .hero-card {
   flex: 1 1 320px;
   position: relative;
 }

 .hero-card .image-shell {
   background: #c9d7c8;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
 }

 .hero-card .floating-note {
   position: absolute;
   right: -12px;
   bottom: -20px;
   background: var(--sun);
   padding: 16px 20px;
   border-radius: 18px;
   max-width: 220px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }

 .btn.secondary {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
 }

 .section {
   padding: 70px 6vw;
 }

 .section.muted {
   background: var(--surface);
 }

 .section.layered {
   background: var(--layer);
 }

 .offset-block {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }

 .offset-block.reverse {
   flex-direction: row-reverse;
 }

 .offset-text {
   flex: 1 1 300px;
 }

 .offset-image {
   flex: 1 1 280px;
   background: #d6e5d8;
   padding: 18px;
   border-radius: 22px;
 }

 .offset-image img {
   border-radius: 18px;
 }

 .services-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }

 .service-card {
   flex: 1 1 220px;
   min-width: 220px;
   background: #fff;
   border-radius: 20px;
   padding: 18px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .service-card .image-shell {
   background: #d2e0d4;
   border-radius: 16px;
   overflow: hidden;
 }

 .service-card .price {
   font-weight: 700;
   color: var(--accent-dark);
 }

 .metrics {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }

 .metric {
   flex: 1 1 180px;
   background: #fff;
   padding: 20px;
   border-radius: 18px;
   box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
 }

 .cta-band {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   justify-content: space-between;
   background: var(--accent);
   color: #fff;
   padding: 26px 6vw;
 }

 .cta-band a {
   color: #fff;
   font-weight: 700;
 }

 .form-shell {
   background: #fff;
   padding: 26px;
   border-radius: 24px;
   box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
   max-width: 520px;
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 label {
   font-weight: 600;
 }

 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #c7d5cb;
   font-size: 1rem;
 }

 .form-message {
   font-size: 0.95rem;
   color: var(--accent-dark);
   min-height: 20px;
 }

 footer {
   padding: 40px 6vw 60px;
   background: #18251f;
   color: #eef4ef;
 }

 footer a {
   color: #dbe7de;
 }

 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
 }

 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
   z-index: 10;
 }

 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   color: var(--ink);
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
   max-width: 360px;
   display: none;
   z-index: 12;
 }

 .cookie-banner.visible {
   display: block;
 }

 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }

 .cookie-actions button {
   border: none;
   padding: 10px 14px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }

 .cookie-actions button.secondary {
   background: #dde8df;
   color: var(--accent-dark);
 }

 .side-note {
   background-color: #2b4a3b;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 40px;
   border-radius: 24px;
   color: #f9fbf9;
 }

 .side-note.alt {
   background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
 }

 .side-note.warm {
   background-image: url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=80");
 }

 .side-note p {
   max-width: 420px;
 }

 .split-banner {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   align-items: center;
 }

 .split-banner .pill {
   background: #f0e5d2;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
 }

 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 @media (max-width: 820px) {
   .hero-card .floating-note {
     position: static;
     margin-top: 14px;
   }

   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
