 :root {
   color-scheme: light;
   --bg: #f7f5f1;
   --ink: #1b1b1b;
   --muted: #5b5b5b;
   --accent: #d4643b;
   --accent-dark: #b35230;
   --soft: #efe9e2;
   --line: #ddd1c6;
   --shadow: 0 24px 60px rgba(16, 16, 16, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   border-radius: 16px;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .top-nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 8vw 10px;
   position: relative;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.06em;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 30px 8vw 70px;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   right: 6vw;
   bottom: -40px;
   width: 220px;
   height: 220px;
   border-radius: 50%;
   background: var(--soft);
   z-index: 0;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 18px;
   position: relative;
   z-index: 2;
 }
 
 .hero-title {
   font-size: clamp(2.2rem, 4vw, 3.6rem);
   line-height: 1.1;
 }
 
 .hero-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-image {
   width: min(520px, 100%);
   align-self: flex-end;
   box-shadow: var(--shadow);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   border-bottom: 2px solid var(--accent);
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 70px 8vw;
   position: relative;
 }
 
 .section.soft {
   background: var(--soft);
 }
 
 .section.split {
   flex-direction: column;
   gap: 32px;
 }
 
 .split-row {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .offset-card {
   background: white;
   padding: 24px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   margin-left: auto;
   max-width: 520px;
 }
 
 .floating-block {
   background: white;
   padding: 28px;
   border-radius: 22px;
   box-shadow: var(--shadow);
 }
 
 .quote {
   font-style: italic;
   border-left: 3px solid var(--accent);
   padding-left: 16px;
   color: var(--muted);
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 20px;
   background: white;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   min-width: 240px;
   background: white;
   padding: 20px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: var(--shadow);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #fff3e9;
   color: var(--accent-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: var(--accent);
   color: white;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .cta-outline {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
 }
 
 .form-card {
   background: white;
   padding: 26px;
   border-radius: 22px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
   font-size: 0.95rem;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   background: var(--accent);
   color: white;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 20;
 }
 
 .sticky-cta.visible {
   display: inline-flex;
 }
 
 .footer {
   padding: 50px 8vw 60px;
   background: #161514;
   color: #f4efe9;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   margin-top: 16px;
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   right: 18px;
   bottom: 18px;
   background: white;
   border-radius: 20px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .thanks {
   min-height: 60vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }
 
 @media (min-width: 900px) {
   .hero-row,
   .split-row {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-content {
     max-width: 52%;
   }
 
   .hero-image {
     margin-top: -30px;
   }
 
   .section.split {
     gap: 44px;
   }
 
   .offset-card {
     margin-top: -60px;
   }
 }
