 :root {
   color-scheme: light;
   --ink: #0e1a13;
   --muted: #4a5b50;
   --sage: #d8e5da;
   --eucalyptus: #a8c7b1;
   --sand: #f4f1ec;
   --clay: #e5d2bf;
   --forest: #1b3a2a;
   --river: #3a6d75;
   --sun: #f6c66a;
 }

 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #faf9f6;
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }

 .header {
   padding: 28px 6vw 12px;
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 24px;
 }

 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .brand h2 {
   font-size: 1.25rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }

 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   justify-content: flex-end;
 }

 .nav a {
   font-weight: 600;
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--sage);
 }

 .nav a:hover {
   background: var(--eucalyptus);
 }

 .hero {
   display: flex;
   flex-direction: column;
   gap: 32px;
   padding: 32px 6vw 60px;
 }

 .hero-layout {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }

 .hero-card {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: var(--sand);
   padding: 28px;
   border-radius: 24px;
   box-shadow: 0 20px 45px rgba(8, 27, 18, 0.08);
 }

 .hero-card h1 {
   font-size: clamp(2.4rem, 4vw, 3.3rem);
   line-height: 1.1;
 }

 .hero-card p {
   color: var(--muted);
 }

 .hero-cta {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--forest);
   color: #fff;
   font-weight: 600;
 }

 .button.secondary {
   background: var(--river);
 }

 .button:hover {
   filter: brightness(1.1);
 }

 .hero-image {
   border-radius: 28px;
   overflow: hidden;
   background: var(--eucalyptus);
   position: relative;
   min-height: 320px;
 }

 .hero-image img {
   width: 100%;
   height: 100%;
 }

 .overlap-strip {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: -40px;
 }

 .strip-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   padding: 22px;
   border-radius: 22px;
   box-shadow: 0 16px 30px rgba(13, 27, 20, 0.08);
 }

 .strip-row strong {
   font-size: 1.05rem;
 }

 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 56px;
   padding: 0 6vw 90px;
 }

 .asym-section {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }

 .asym-row {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }

 .asym-card {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 24px;
   border-radius: 22px;
   background: #fff;
   box-shadow: 0 18px 40px rgba(12, 23, 18, 0.08);
 }

 .asym-card h3 {
   font-size: 1.4rem;
 }

 .split-image {
   border-radius: 22px;
   overflow: hidden;
   background: var(--clay);
 }

 .split-image img {
   width: 100%;
   height: 100%;
   min-height: 220px;
 }

 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .price-card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 22px;
   border-radius: 22px;
   background: var(--sage);
 }

 .price-card span {
   font-weight: 700;
   font-size: 1.1rem;
 }

 .callout {
   background: var(--forest);
   color: #fff;
   padding: 28px;
   border-radius: 28px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 .callout a {
   align-self: flex-start;
 }

 .form-wrap {
   background: #fff;
   padding: 32px;
   border-radius: 28px;
   box-shadow: 0 20px 40px rgba(12, 25, 18, 0.08);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .form-wrap label {
   font-weight: 600;
 }

 .form-wrap select,
 .form-wrap input,
 .form-wrap textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 14px;
   border: 1px solid #cbd5c7;
   font-size: 1rem;
 }

 .form-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .image-panel {
   border-radius: 24px;
   overflow: hidden;
   background: var(--sage);
 }

 .image-panel img {
   width: 100%;
   height: 100%;
   min-height: 260px;
 }

 .footer {
   background: var(--sand);
   padding: 40px 6vw;
   display: flex;
   flex-direction: column;
   gap: 18px;
   color: var(--muted);
 }

 .footer a {
   color: inherit;
   text-decoration: underline;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }

 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--sun);
   color: #1d1a13;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   box-shadow: 0 12px 24px rgba(21, 18, 13, 0.2);
 }

 .sticky-cta:hover {
   filter: brightness(1.05);
 }

 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 18px 40px rgba(8, 18, 13, 0.2);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 5;
 }

 .cookie-banner.show {
   display: flex;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
 }

 .cookie-actions button {
   flex: 1;
   padding: 10px 12px;
   border: none;
   border-radius: 999px;
   font-weight: 600;
 }

 .cookie-actions .accept {
   background: var(--forest);
   color: #fff;
 }

 .cookie-actions .reject {
   background: #d9d9d9;
 }

 .page-hero {
   padding: 32px 6vw;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .page-hero h1 {
   font-size: clamp(2rem, 3.5vw, 2.8rem);
 }

 .page-hero p {
   color: var(--muted);
   max-width: 720px;
 }

 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .legal-block {
   background: #fff;
   border-radius: 20px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .legal-block h2 {
   font-size: 1.4rem;
 }

 .service-list {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .service-row {
   display: flex;
   flex-direction: column;
   gap: 14px;
   background: #fff;
   padding: 22px;
   border-radius: 22px;
 }

 .service-row strong {
   font-size: 1.2rem;
 }

 @media (min-width: 900px) {
   .hero-layout {
     flex-direction: row;
     align-items: stretch;
   }

   .hero-card {
     flex: 1.1;
   }

   .hero-image {
     flex: 1;
   }

   .overlap-strip {
     flex-direction: row;
   }

   .strip-row {
     flex: 1;
   }

   .asym-row {
     flex-direction: row;
     align-items: center;
   }

   .asym-row.reverse {
     flex-direction: row-reverse;
   }

   .asym-card,
   .split-image,
   .image-panel {
     flex: 1;
   }

   .pricing-grid {
     flex-direction: row;
   }

   .price-card {
     flex: 1;
   }

   .form-grid {
     display: flex;
     gap: 24px;
   }

   .form-wrap {
     flex: 1.2;
   }

   .image-panel {
     flex: 0.8;
   }

   .contact-grid {
     flex-direction: row;
   }

   .contact-grid .legal-block {
     flex: 1;
   }
 }
