 :root {
   --bg: #f6f4f0;
   --ink: #1b1f1d;
   --muted: #5b645f;
   --accent: #1f6b4a;
   --accent-2: #2c3a6b;
   --sand: #efe7dc;
   --pine: #173728;
   --sun: #e7c46a;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 7vw;
   background: var(--sand);
   border-bottom: 1px solid rgba(0, 0, 0, 0.08);
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand span {
   font-size: 13px;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 12px;
   padding: 6px 10px;
   background: #d8e5de;
   border-radius: 999px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 40px 7vw 20px;
   background: var(--bg);
 }
 
 .hero-text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-visual {
   flex: 1 1 320px;
   background: #cdd7d0;
   border-radius: 18px;
   overflow: hidden;
   min-height: 360px;
   display: flex;
   align-items: stretch;
 }
 
 .hero-visual img {
   width: 100%;
   height: 100%;
 }
 
 .cta-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
 }
 
 .section {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 48px 7vw;
 }
 
 .section.reverse {
   flex-direction: row-reverse;
 }
 
 .section-light {
   background: #ffffff;
 }
 
 .section-sand {
   background: var(--sand);
 }
 
 .section-dark {
   background: #162019;
   color: #f3f4f2;
 }
 
 .section .text {
   flex: 1 1 320px;
 }
 
 .section .media {
   flex: 1 1 320px;
   background: #dfe7e1;
   border-radius: 16px;
   overflow: hidden;
   min-height: 280px;
   display: flex;
 }
 
 .media img {
   width: 100%;
   height: 100%;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
 }
 
 .card-media {
   background: #d9e2dd;
   height: 160px;
 }
 
 .card-body {
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-2);
 }
 
 .inline-link {
   color: var(--accent-2);
   text-decoration: underline;
   cursor: pointer;
 }
 
 .service-picker {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .picker-button {
   border: 1px solid #cad4cf;
   background: #fff;
   padding: 10px 14px;
   border-radius: 12px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   border: 1px solid rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #cdd7d0;
   font-size: 14px;
   font-family: inherit;
 }
 
 .split-list {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .split-item {
   flex: 1 1 240px;
   padding: 16px;
   background: #fff;
   border-radius: 14px;
   border: 1px solid rgba(0, 0, 0, 0.08);
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 7vw;
   background: #0f1712;
   color: #f1f3f0;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 9;
 }
 
 .sticky-cta button {
   background: var(--accent-2);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 14px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   padding: 16px;
   max-width: 320px;
   z-index: 10;
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .notice {
   font-size: 13px;
   color: var(--muted);
 }
 
 .layout-break {
   display: flex;
   gap: 22px;
   flex-wrap: wrap;
 }
 
 .pill {
   background: var(--sun);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 12px;
   font-weight: 600;
   color: #4b3a1a;
 }

 .bg-cad6cf { background-color: #cad6cf; }
 .bg-d7e1db { background-color: #d7e1db; }
 .bg-e1d6c8 { background-color: #e1d6c8; }
 .bg-c9d5d1 { background-color: #c9d5d1; }
 .bg-d6cec3 { background-color: #d6cec3; }
 .bg-cddbd6 { background-color: #cddbd6; }
 .bg-d5d9cf { background-color: #d5d9cf; }
 .bg-c9d0cb { background-color: #c9d0cb; }
 .bg-1c2b22 { background-color: #1c2b22; }
 .bg-d2d8cf { background-color: #d2d8cf; }
 .bg-d9d2c5 { background-color: #d9d2c5; }
 .bg-d8d3c7 { background-color: #d8d3c7; }
 .bg-d7dad1 { background-color: #d7dad1; }
 .bg-d6d1c6 { background-color: #d6d1c6; }
 .bg-d8d4cb { background-color: #d8d4cb; }
 .bg-d2dad5 { background-color: #d2dad5; }
 .bg-cfd6db { background-color: #cfd6db; }
 .bg-d5dcd0 { background-color: #d5dcd0; }
 .bg-c9d6cf { background-color: #c9d6cf; }
 .bg-dcd4c9 { background-color: #dcd4c9; }
 .bg-d8d5cb { background-color: #d8d5cb; }
 .bg-d2d9d3 { background-color: #d2d9d3; }
 .bg-d7d2c8 { background-color: #d7d2c8; }
 .bg-d6dbd4 { background-color: #d6dbd4; }
 .bg-d9d6cf { background-color: #d9d6cf; }
 
 @media (max-width: 900px) {
   .topbar,
   .hero,
   .section {
     padding: 24px 6vw;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
