 :root {
   color-scheme: light;
   --bg: #f7f3ef;
   --ink: #241c16;
   --muted: #6e6259;
   --accent: #b8553c;
   --accent-dark: #8f3f2b;
   --panel: #ffffff;
   --line: #e5ddd6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Manrope", "Inter", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 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 6vw;
   border-bottom: 1px solid var(--line);
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(4px);
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand span {
   font-size: 12px;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 14px;
 }
 
 .hero {
   padding: 60px 6vw 40px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 26px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .split-panel {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 16px;
 }
 
 .split-panel.light {
   background: var(--panel);
   padding: 28px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .eyebrow {
   font-size: 12px;
   letter-spacing: 0.22em;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 h1 {
   margin: 0;
   font-size: 34px;
   line-height: 1.15;
 }
 
 h2 {
   margin: 0;
   font-size: 26px;
 }
 
 h3 {
   margin: 0;
   font-size: 18px;
 }
 
 p {
   margin: 0;
   line-height: 1.6;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   font-size: 14px;
   cursor: pointer;
   background: var(--accent);
   color: #fff;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }
 
 .btn.outline {
   background: transparent;
   color: var(--accent);
 }
 
 .section {
   padding: 40px 6vw;
 }
 
 .section.alt {
   background: #f0e8e1;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--line);
   background: var(--panel);
 }
 
 .price {
   font-weight: 600;
   color: var(--ink);
 }
 
 .inline-link {
   font-weight: 600;
   color: var(--accent);
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 22px;
   border-radius: 18px;
   border: 1px solid var(--line);
   background: var(--panel);
 }
 
 label {
   font-size: 13px;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-family: inherit;
 }
 
 .footer {
   margin-top: auto;
   padding: 26px 6vw;
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 13px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
   font-size: 13px;
   z-index: 5;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 340px;
   background: var(--panel);
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   z-index: 6;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .inline-note {
   font-size: 14px;
   color: var(--muted);
 }
 
 @media (min-width: 860px) {
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   h1 {
     font-size: 46px;
   }
 
   h2 {
     font-size: 32px;
   }
 
   .nav-links {
     gap: 26px;
   }
 }
