 :root {
   color-scheme: light;
   --ink: #1c2430;
   --muted: #5a6678;
   --accent: #2f6b5f;
   --accent-dark: #245248;
   --surface: #f7f3ee;
   --surface-strong: #e9e1d6;
   --highlight: #fff4e3;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   color: var(--accent-dark);
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
 }
 
 header {
   padding: 24px 6vw 16px;
   border-bottom: 1px solid #e7e0d7;
   background: #fff;
 }
 
 .nav-shell {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 16px;
   align-items: center;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.03em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
   max-width: 240px;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   padding: 56px 6vw;
   gap: 36px;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-panel {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .panel-card {
   background: var(--surface);
   padding: 28px;
   border-radius: 20px;
 }
 
 .panel-card strong {
   display: block;
   margin-bottom: 10px;
 }
 
 .image-frame {
   background-color: #d8d1c9;
   border-radius: 24px;
   overflow: hidden;
 }
 
 .media-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .btn:hover {
   background: var(--accent-dark);
   border-color: var(--accent-dark);
 }
 
 .btn.secondary:hover {
   background: #e6efe9;
 }
 
 .inline-link {
   border-bottom: 1px solid var(--accent);
 }
 
 .cards-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: #fff;
   border: 1px solid #e5ded5;
   border-radius: 20px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc6bb;
   font-size: 1rem;
 }
 
 .muted {
   color: var(--muted);
 }
 
 footer {
   padding: 32px 6vw 48px;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
 }
 
 .sticky-cta:hover {
   background: var(--accent-dark);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid #e4ddd3;
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .section-alt {
   background: var(--highlight);
 }
 
 .section-contrast {
   background: var(--surface-strong);
 }
 
 .list-clean {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .disclaimer {
   font-size: 0.9rem;
   color: #5c605f;
 }
