 :root {
   --ink: #1d1d1c;
   --paper: #f8f6f2;
   --sand: #efe7dd;
   --clay: #d5c2a8;
   --moss: #5f6b5b;
   --sky: #e6edf2;
   --accent: #d07a5f;
   --accent-dark: #b8664f;
   --line: #d7d0c6;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   background: var(--paper);
   color: var(--ink);
   line-height: 1.6;
 }

 img {
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   width: 100%;
   overflow-x: hidden;
 }

 header {
   padding: 18px 6vw 8px;
 }

 .ad-label {
   font-size: 0.85rem;
   color: var(--moss);
   letter-spacing: 0.01em;
   margin-bottom: 10px;
 }

 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }

 .nav-brand {
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }

 .nav-links a {
   font-size: 0.95rem;
   padding: 6px 0;
   border-bottom: 2px solid transparent;
 }

 .nav-links a:hover {
   border-bottom-color: var(--accent);
 }

 main {
   display: flex;
   flex-direction: column;
   gap: 70px;
   padding: 0 6vw 80px;
 }

 .hero {
   min-height: 70vh;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 80px 6vw 60px;
   border-radius: 26px;
   background-color: #b7c1b4;
   background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #1f221d;
   position: relative;
 }

 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(248, 246, 242, 0.8);
   border-radius: 26px;
 }

 .hero-content {
   position: relative;
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 40px;
   flex-wrap: wrap;
 }

 .hero-text {
   max-width: 520px;
 }

 .hero h1 {
   font-size: clamp(2.4rem, 4vw, 3.6rem);
   margin: 0 0 16px;
 }

 .hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }

 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border-color: var(--accent-dark);
 }

 .asym-block {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }

 .asym-block.reverse {
   flex-direction: row-reverse;
 }

 .offset-panel {
   background: #fff;
   padding: 28px;
   border-radius: 20px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
   border: 1px solid var(--line);
 }

 .offset-left {
   margin-left: -40px;
 }

 .offset-right {
   margin-right: -40px;
 }

 .img-frame {
   background: var(--sand);
   border-radius: 24px;
   overflow: hidden;
   width: min(420px, 90vw);
   height: 320px;
 }

 .img-cover {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .story-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin: 0;
   padding: 0;
   list-style: none;
 }

 .story-list li {
   padding-left: 16px;
   position: relative;
 }

 .story-list li::before {
   content: "•";
   position: absolute;
   left: 0;
   color: var(--accent);
 }

 .process-band {
   background-color: #c8d2d8;
   background-image: url("https://images.pexels.com/photos/37320728/pexels-photo-37320728.jpeg");
   background-size: cover;
   background-position: center;
   border-radius: 30px;
   padding: 50px 40px;
   color: #1b1f23;
   position: relative;
 }

 .process-band::after {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: 30px;
   background: rgba(239, 231, 221, 0.9);
 }

 .process-inner {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: flex-start;
 }

 .process-card {
   flex: 1 1 230px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }

 .cta-slab {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 30px;
   border-radius: 22px;
   background: var(--sky);
   border: 1px solid var(--line);
   flex-wrap: wrap;
 }

 .cta-slab p {
   margin: 0;
 }

 .testimonial-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }

 .testimonial {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   border: 1px solid var(--line);
 }

 .pricing-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .pricing-card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .pricing-card .price {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--accent-dark);
 }

 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }

 .service-card {
   flex: 1 1 260px;
   background: #fff;
   border-radius: 22px;
   border: 1px solid var(--line);
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 .service-card .img-frame {
   width: 100%;
   height: 180px;
 }

 .form-shell {
   background: #fff;
   border-radius: 22px;
   padding: 28px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
   max-width: 620px;
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 label {
   font-weight: 600;
 }

 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }

 textarea {
   min-height: 120px;
 }

 footer {
   border-top: 1px solid var(--line);
   padding: 30px 6vw 60px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: #f2ede7;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }

 .disclaimer {
   font-size: 0.9rem;
   color: #4a4a44;
 }

 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   padding: 12px 18px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
   z-index: 20;
 }

 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #fff;
   border-radius: 18px;
   border: 1px solid var(--line);
   padding: 18px;
   display: none;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   z-index: 25;
 }

 .cookie-banner.show {
   display: flex;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .text-link {
   color: var(--accent-dark);
   font-weight: 600;
   border-bottom: 1px solid currentColor;
 }

 .page-title {
   font-size: clamp(2rem, 4vw, 3rem);
   margin-top: 10px;
 }

 .content-block {
   max-width: 760px;
 }

 .legal-block {
   background: #fff;
   padding: 24px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }

 @media (max-width: 900px) {
   .offset-left,
   .offset-right {
     margin: 0;
   }

   .hero {
     padding: 70px 5vw 50px;
   }

   header {
     padding: 18px 5vw 8px;
   }

   main {
     padding: 0 5vw 70px;
   }
 }
