 :root {
   color-scheme: light;
   --bg: #f7f5f1;
   --ink: #1d1f22;
   --muted: #5d6672;
   --accent: #1b5d4f;
   --accent-2: #c48f2c;
   --paper: #ffffff;
   --sand: #efe7da;
   --slate: #e3e9ef;
   --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   background: var(--paper);
   padding: 32px 24px;
   display: flex;
   flex-direction: column;
   gap: 24px;
   border-right: 1px solid #e0e0e0;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
 }
 
 .ad-label {
   font-size: 12px;
   line-height: 1.4;
   color: var(--muted);
   padding: 10px 12px;
   background: var(--slate);
   border-radius: 8px;
 }
 
 nav ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 nav a {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 0;
   font-weight: 600;
 }
 
 .sidebar-cta {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 28px;
   background: var(--sand);
   padding: 16px;
   border-radius: 16px;
 }
 
 .content {
   flex: 1;
   padding: 36px 48px 80px;
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .hero {
   background: var(--slate);
   border-radius: 24px;
   padding: 40px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   min-height: 360px;
   position: relative;
   overflow: hidden;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
   background-size: cover;
   background-position: center;
   opacity: 0.22;
 }
 
 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 560px;
 }
 
 .hero h1 {
   font-size: 38px;
   margin: 0 0 8px;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 18px;
   line-height: 1.6;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: var(--accent-2);
 }
 
 .btn.ghost {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn:hover,
 .link-inline:hover {
   filter: brightness(0.95);
 }
 
 .section-split {
   display: flex;
   gap: 36px;
   align-items: stretch;
 }
 
 .panel {
   flex: 1;
   background: var(--paper);
   border-radius: 18px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .panel.muted {
   background: var(--sand);
 }
 
 .image-frame {
   background: #d9e1e8;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .frame-1 { background-color: #d4dde6; }
 .frame-2 { background-color: #e0d9cd; }
 .frame-3 { background-color: #dfe7ec; }
 .frame-4 { background-color: #d6e1dc; }
 .frame-5 { background-color: #e6dcd1; }
 .frame-6 { background-color: #dfe3ea; }
 .frame-7 { background-color: #d9dfe7; }
 .frame-8 { background-color: #d6dfe6; }
 .frame-9 { background-color: #e3e1d9; }
 .frame-10 { background-color: #dfe5db; }
 .frame-11 { background-color: #d3dbe5; }
 .frame-12 { background-color: #e0e4ef; }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: var(--paper);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: var(--shadow);
 }
 
 .service-card h3 {
   margin: 0;
 }
 
 .service-card p {
   margin: 0;
   color: var(--muted);
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
 }
 
 .highlight {
   background: var(--accent);
   color: #fff;
   border-radius: 20px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 0;
   margin: 0;
   list-style: none;
   color: var(--muted);
 }
 
 .form-wrap {
   background: var(--paper);
   border-radius: 20px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #ccd4dc;
   font-size: 14px;
 }
 
 .cta-bar {
   background: var(--slate);
   padding: 18px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .footer {
   border-top: 1px solid #e0e0e0;
   padding-top: 28px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   color: var(--muted);
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: var(--paper);
   padding: 16px;
   border-radius: 14px;
   box-shadow: var(--shadow);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   gap: 8px;
 }
 
 .page-hero {
   background: var(--sand);
   padding: 24px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .page-hero h1 {
   margin: 0;
 }
 
 .bg-panel {
   background: #e9eef3;
   border-radius: 20px;
   padding: 24px;
   position: relative;
   overflow: hidden;
 }
 
 .bg-panel::after {
   content: "";
   position: absolute;
   inset: 0;
   background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
   background-size: cover;
   background-position: center;
   opacity: 0.18;
 }
 
 .bg-panel > * {
   position: relative;
   z-index: 1;
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .callout {
   background: var(--paper);
   border-left: 4px solid var(--accent);
   padding: 18px;
   border-radius: 12px;
 }
 
 .reference-list {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding-left: 18px;
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     gap: 16px;
   }
 
   nav ul {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 10px;
   }
 
   .content {
     padding: 28px 22px 60px;
   }
 
   .section-split {
     flex-direction: column;
   }
 }
