 :root {
   color-scheme: light;
   --ink: #2a2420;
   --muted: #6a5f57;
   --paper: #f7f1ea;
   --clay: #c97c5d;
   --sage: #6f7f6a;
   --sand: #e7d6c6;
   --dark: #1e1916;
   --accent: #3f6e78;
   --shadow: 0 18px 40px rgba(40, 28, 20, 0.15);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   background: var(--paper);
   color: var(--ink);
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 28px 6vw 10px;
 }
 
 .nav-split {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .hero {
   display: flex;
   padding: 40px 6vw 70px;
   gap: 40px;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   right: 5vw;
   top: 20px;
   width: 45%;
   height: 80%;
   background: rgba(201, 124, 93, 0.15);
   z-index: 0;
 }
 
 .hero-text {
   flex: 1 1 55%;
   position: relative;
   z-index: 1;
 }
 
 .hero-visual {
   flex: 1 1 45%;
   position: relative;
   z-index: 1;
 }
 
 .hero-visual img {
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .hero h1 {
   font-size: clamp(2.4rem, 4vw, 3.6rem);
   line-height: 1.05;
   margin: 0 0 16px;
 }
 
 .hero p {
   font-size: 1.1rem;
   color: var(--muted);
   max-width: 34rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--clay);
   color: #fff;
   font-weight: 600;
   border: none;
 }
 
 .button.alt {
   background: transparent;
   color: var(--ink);
   border: 1px solid var(--ink);
 }
 
 .section {
   padding: 60px 6vw;
 }
 
 .section.alt {
   background: #fff;
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section-header {
   display: flex;
   align-items: flex-start;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .section-header h2 {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
   margin: 0;
 }
 
 .section-header p {
   max-width: 36rem;
   color: var(--muted);
   margin: 10px 0 0;
 }
 
 .cards {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   margin-top: 32px;
 }
 
 .card {
   background: #fff;
   border-radius: 18px;
   padding: 22px;
   flex: 1 1 240px;
   box-shadow: 0 10px 24px rgba(26, 20, 16, 0.08);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .card span {
   font-weight: 700;
 }
 
 .asym-row {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-row .text {
   flex: 1 1 320px;
 }
 
 .asym-row .visual {
   flex: 1 1 240px;
 }
 
 .pricing-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin-top: 24px;
 }
 
 .price-item {
   background: #fff;
   border-radius: 16px;
   padding: 18px 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 18px;
   box-shadow: 0 12px 22px rgba(27, 19, 14, 0.08);
 }
 
 .price-item strong {
   font-size: 1.05rem;
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent);
 }
 
 .quote {
   display: flex;
   flex-direction: column;
   gap: 14px;
   font-style: italic;
   color: var(--muted);
 }
 
 .form-shell {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
 }
 
 .form-panel {
   flex: 1 1 320px;
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d6c7bb;
   font-size: 1rem;
   font-family: inherit;
   background: #fff;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--dark);
   color: #fff;
   padding: 12px 16px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   z-index: 10;
 }
 
 .footer {
   background: var(--dark);
   color: #efe8e2;
   padding: 40px 6vw;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer a {
   color: #efe8e2;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 24px;
   left: 24px;
   right: 24px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
   z-index: 20;
 }
 
 .cookie-banner p {
   margin: 0;
   flex: 1 1 240px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .page-header {
   padding: 60px 6vw 30px;
 }
 
 .page-header h1 {
   font-size: clamp(2rem, 4vw, 3rem);
   margin: 0 0 10px;
 }
 
 .content-block {
   padding: 0 6vw 60px;
   max-width: 920px;
 }
 
 .content-block h2 {
   margin-top: 30px;
 }
 
 .contact-grid {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
   padding: 0 6vw 70px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 @media (max-width: 860px) {
   .hero {
     flex-direction: column;
   }
 
   .hero::after {
     width: 100%;
     right: 0;
     top: auto;
     bottom: 0;
     height: 45%;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     text-align: center;
   }
 }
