 :root {
   --ink: #1b1b1b;
   --muted: #5f5f5f;
   --cream: #f7f3ef;
   --accent: #c85f40;
   --accent-dark: #9c462e;
   --soft: #e9e2da;
   --sky: #dbe5f3;
   --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 header {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 32px 8vw 0 8vw;
 }
 
 .logo {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.04em;
 }
 
 .corner-nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
   text-align: right;
   font-size: 0.95rem;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   padding: 40px 8vw 60px 8vw;
   gap: 28px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-media {
   position: relative;
   display: flex;
   justify-content: flex-start;
 }
 
 .hero-media img {
   border-radius: 28px;
   box-shadow: var(--shadow);
 }
 
 .hero-cta {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 14px 26px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 70px 8vw;
 }
 
 .section.alt {
   background: var(--cream);
 }
 
 .section.soft {
   background: var(--soft);
 }
 
 .section.sky {
   background: var(--sky);
 }
 
 .asym {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .offset-block {
   display: flex;
   flex-direction: column;
   gap: 20px;
   background: #fff;
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   padding: 6px 14px;
   border-radius: 999px;
   background: rgba(200, 95, 64, 0.12);
   color: var(--accent-dark);
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 22px;
   border-radius: 18px;
   background: #fff;
   box-shadow: var(--shadow);
 }
 
 .service-price {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d6d0c9;
   font-size: 1rem;
 }
 
 footer {
   padding: 40px 8vw 60px 8vw;
   background: #111;
   color: #f0ece7;
 }
 
 footer a {
   color: #f0ece7;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 18px;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 16px;
   margin: 0 8vw 16px 8vw;
   padding: 12px 18px;
   border-radius: 16px;
   background: #fff;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: #fff;
   border-radius: 16px;
   padding: 16px 18px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .page-hero {
   padding: 60px 8vw 40px 8vw;
   background: var(--cream);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 @media (min-width: 760px) {
   .hero {
     flex-direction: row;
     align-items: center;
     gap: 60px;
   }
 
   .hero-inner,
   .hero-media {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .card-row,
   .stats,
   .services {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-item,
   .stat {
     flex: 1 1 240px;
   }
 
   .asym {
     flex-direction: row;
     align-items: center;
   }
 
   .offset-block {
     margin-left: 8%;
   }
 
   .sticky-cta {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .contact-grid > div {
     flex: 1;
   }
 }
