 :root {
   --bg: #f6f1ec;
   --ink: #1e1b19;
   --muted: #6c625c;
   --accent: #b85c4b;
   --accent-dark: #8f3f32;
   --paper: #fffaf6;
   --line: #e0d5cc;
 }
 
 * {
   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 {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow: hidden;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.25rem 6vw;
   background: var(--paper);
   border-bottom: 1px solid var(--line);
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.85rem;
 }
 
 .nav-links {
   display: flex;
   gap: 1.5rem;
   font-size: 0.95rem;
 }
 
 .nav-toggle {
   display: none;
   background: transparent;
   border: 1px solid var(--ink);
   padding: 0.45rem 0.7rem;
   font-size: 0.85rem;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   padding: 3rem 6vw 4rem;
   gap: 2rem;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   right: 0;
   top: 2rem;
   width: 55%;
   height: 75%;
   background: rgba(184, 92, 75, 0.08);
   z-index: 0;
 }
 
 .hero-content,
 .hero-visual {
   position: relative;
   z-index: 1;
 }
 
 .hero-title {
   font-size: 2.5rem;
   line-height: 1.1;
   margin-bottom: 1rem;
 }
 
 .hero-actions {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.8rem 1.4rem;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-outline {
   border-color: var(--accent);
   color: var(--accent);
   background: transparent;
 }
 
 .cta-inline {
   color: var(--accent);
   border-bottom: 1px solid var(--accent);
 }
 
 .section {
   padding: 3.5rem 6vw;
 }
 
 .section.alt {
   background: var(--paper);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .offset-block {
   background: #fff;
   border: 1px solid var(--line);
   padding: 2rem;
   box-shadow: 0 20px 40px rgba(30, 27, 25, 0.08);
 }
 
 .offset-block.shift {
   margin-left: 8vw;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }
 
 .card {
   background: #fff;
   border: 1px solid var(--line);
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card img {
   height: 140px;
   object-fit: cover;
   border-radius: 14px;
 }
 
 .testimonial {
   font-style: italic;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   background: #fff;
   padding: 1.5rem;
   border: 1px solid var(--line);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .form-section {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 0.75rem 1rem;
   border: 1px solid var(--line);
   border-radius: 10px;
   font-size: 1rem;
 }
 
 .service-choice {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .choice-row {
   display: flex;
   gap: 0.75rem;
   align-items: center;
 }
 
 .sticky-cta {
   position: sticky;
   top: 1.5rem;
   align-self: flex-start;
   padding: 1.5rem;
   border: 1px dashed var(--accent);
   background: rgba(184, 92, 75, 0.08);
 }
 
 .footer {
   padding: 3rem 6vw;
   background: #1e1b19;
   color: #f6f1ec;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1.2rem;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1.5rem;
   bottom: 1.5rem;
   max-width: 320px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 1rem;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.75rem;
   margin-top: 0.75rem;
 }
 
 .hero-image {
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-stack {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 @media (min-width: 768px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-content {
     flex: 1.1;
   }
 
   .hero-visual {
     flex: 0.9;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .service-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-item {
     flex: 1 1 calc(50% - 1.5rem);
   }
 
   .form-section {
     flex-direction: row;
   }
 
   .form-section > div {
     flex: 1;
   }
 }
 
 @media (max-width: 840px) {
   .nav-links {
     display: none;
     flex-direction: column;
     gap: 0.75rem;
     padding-top: 1rem;
   }
 
   .nav-links.open {
     display: flex;
   }
 
   .nav-toggle {
     display: inline-flex;
   }
 }
