 :root {
   color-scheme: light;
   --ink: #121417;
   --muted: #5b6670;
   --accent: #0f6d65;
   --accent-dark: #0b4d47;
   --bg: #f5f4f1;
   --paper: #ffffff;
   --sand: #efe9df;
   --mist: #e4eaef;
   --lavender: #e8e3f2;
   --shadow: 0 20px 50px rgba(18, 20, 23, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   padding: 24px 7vw;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .ad-label {
   padding: 6px 12px;
   background: var(--sand);
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .hero {
   display: flex;
   gap: 48px;
   align-items: center;
   padding: 40px 7vw 70px;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   right: 8vw;
   top: 0;
   width: 38%;
   height: 100%;
   background: var(--mist);
   border-radius: 28px;
   z-index: 0;
 }
 
 .hero-text {
   flex: 1.1;
   position: relative;
   z-index: 1;
 }
 
 .hero-text h1 {
   font-size: 2.8rem;
   margin-bottom: 16px;
 }
 
 .hero-text p {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .hero-media {
   flex: 0.9;
   position: relative;
   z-index: 2;
   margin-top: 30px;
 }
 
 .hero-media .image-frame {
   padding: 18px;
 }
 
 .image-frame {
   background: var(--sand);
   border-radius: 22px;
   box-shadow: var(--shadow);
 }
 
 .primary-btn,
 .ghost-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   border: none;
 }
 
 .primary-btn {
   background: var(--accent);
   color: #fff;
 }
 
 .ghost-btn {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 70px 7vw;
   position: relative;
 }
 
 .section.alt {
   background: var(--paper);
 }
 
 .section-title {
   font-size: 2rem;
   margin-bottom: 18px;
 }
 
 .section-flex {
   display: flex;
   gap: 40px;
   align-items: flex-start;
   flex-wrap: wrap;
 }
 
 .section-flex.reverse {
   flex-direction: row-reverse;
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--paper);
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 14px;
 }
 
 .tag {
   display: inline-block;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--muted);
 }
 
 .stacked {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight-box {
   background: var(--lavender);
   padding: 26px;
   border-radius: 18px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   background: var(--paper);
   border-radius: 18px;
   padding: 18px 22px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   box-shadow: var(--shadow);
 }
 
 .service-item span {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .service-price {
   font-weight: 700;
 }
 
 .form-shell {
   background: var(--paper);
   border-radius: 20px;
   padding: 26px;
   box-shadow: var(--shadow);
   max-width: 520px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d8dde2;
   font-family: inherit;
   font-size: 1rem;
 }
 
 textarea {
   resize: vertical;
 }
 
 .split-band {
   display: flex;
   gap: 30px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split-band .highlight-box {
   flex: 1;
 }
 
 footer {
   margin-top: auto;
   padding: 50px 7vw 30px;
   background: #0f1419;
   color: #f0f3f6;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 16px;
 }
 
 .footer-links a {
   color: #cfd6dc;
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   right: 20px;
   max-width: 340px;
   background: var(--paper);
   box-shadow: var(--shadow);
   border-radius: 16px;
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 999;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   left: 50%;
   transform: translateX(-50%);
   bottom: 20px;
   background: var(--accent-dark);
   color: #fff;
   padding: 10px 18px;
   border-radius: 999px;
   display: flex;
   align-items: center;
   gap: 14px;
   z-index: 998;
 }
 
 .sticky-cta button {
   background: #fff;
   color: var(--accent-dark);
   border: none;
   padding: 8px 14px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .page-title {
   padding: 40px 7vw 10px;
 }
 
 .legal {
   max-width: 900px;
 }
 
 .contact-grid {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .contact-card {
   background: var(--paper);
   padding: 22px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   flex: 1 1 240px;
 }
 
 @media (max-width: 900px) {
   .hero {
     flex-direction: column;
   }
 
   .hero::after {
     width: 90%;
     right: 5%;
     top: 25%;
   }
 
   .sticky-cta {
     width: calc(100% - 32px);
     justify-content: space-between;
   }
 }
