 :root {
   --ink: #1a1a1a;
   --muted: #5a5a5a;
   --paper: #f6f4f1;
   --accent: #1f6f78;
   --accent-soft: #d7ecec;
   --sand: #efe6da;
   --sun: #f3d7b3;
   --stone: #e3e7ea;
   --shadow: rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 input:focus,
 select:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 header {
   padding: 24px 6vw 12px;
 }
 
 .top-nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 12px 24px;
 }
 
 .brand {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   padding: 6px 10px;
   background: var(--accent-soft);
   border-radius: 999px;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 64px;
   padding: 0 6vw 96px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   gap: 24px;
 }
 
 .hero-text {
   flex: 1 1 320px;
   padding: 40px;
   background: var(--paper);
   border-radius: 32px;
   position: relative;
   box-shadow: 0 18px 40px var(--shadow);
 }
 
 .hero-text::after {
   content: "";
   position: absolute;
   bottom: -18px;
   right: 24px;
   width: 140px;
   height: 6px;
   background: var(--accent);
   border-radius: 999px;
 }
 
 .hero-visual {
   flex: 1 1 360px;
   min-height: 380px;
   border-radius: 28px;
  background-color: var(--stone);
   background-size: cover;
   background-position: center;
   box-shadow: 0 18px 40px var(--shadow);
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
 }
 
 .bg-focus {
   background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .section-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .offset-card {
   background: var(--sand);
   padding: 28px;
   border-radius: 24px;
   box-shadow: 0 16px 30px var(--shadow);
   transform: translateY(12px);
 }
 
 .story-panel {
   flex: 1 1 300px;
 }
 
 .image-panel {
   flex: 1 1 260px;
 }
 
 .img-frame {
   background: var(--stone);
   padding: 10px;
   border-radius: 22px;
   box-shadow: 0 12px 24px var(--shadow);
 }
 
 .img-frame img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 16px;
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 24px;
   box-shadow: 0 16px 30px var(--shadow);
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-body {
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: var(--ink);
 }
 
 .btn.ghost {
   background: var(--accent-soft);
   color: var(--ink);
 }
 
 .steps {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .step {
   flex: 1 1 220px;
   background: var(--paper);
   padding: 18px;
   border-radius: 18px;
 }
 
 .quote {
   background: #ffffff;
   border-left: 4px solid var(--accent);
   padding: 16px 20px;
   border-radius: 14px;
   box-shadow: 0 10px 20px var(--shadow);
 }
 
 .form-panel {
   background: var(--accent-soft);
   padding: 28px;
   border-radius: 24px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #c7c7c7;
   font-size: 1rem;
 }
 
 .form-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .form-row > div {
   flex: 1 1 200px;
 }
 
 footer {
   padding: 40px 6vw 60px;
   background: #f2f2f2;
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 0.95rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   padding: 12px 18px;
   background: var(--accent);
   color: #ffffff;
   border-radius: 999px;
   box-shadow: 0 12px 24px var(--shadow);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background: #ffffff;
   border-radius: 18px;
   box-shadow: 0 20px 40px var(--shadow);
   padding: 16px;
   display: none;
   gap: 10px;
   flex-direction: column;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .legal-block {
   background: var(--paper);
   padding: 24px;
   border-radius: 18px;
 }
 
 .bg-layered {
   background: var(--sun);
   padding: 28px;
   border-radius: 28px;
 }
 
 .bg-insight {
   background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-color: var(--accent);
   background-size: cover;
   background-position: center;
   color: #ffffff;
   padding: 40px;
   border-radius: 28px;
 }

 .bg-services {
   background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
  background-color: var(--accent);
   background-size: cover;
   background-position: center;
   color: #ffffff;
   padding: 36px;
   border-radius: 26px;
 }
 
 .bg-insight .btn {
   background: #ffffff;
   color: var(--ink);
 }
 
 .wide-image {
   background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: var(--stone);
   background-size: cover;
   background-position: center;
   min-height: 220px;
   border-radius: 24px;
 }
 
 .service-banner {
   background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-color: var(--accent);
   background-size: cover;
   background-position: center;
   border-radius: 24px;
   padding: 36px;
   color: #ffffff;
 }
 
 .contact-strip {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .contact-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 12px 24px var(--shadow);
 }
 
 .map-visual {
   background-image: url("https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=1400&q=80");
  background-color: var(--stone);
   background-size: cover;
   background-position: center;
   border-radius: 22px;
   min-height: 200px;
 }
 
 .small-note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .align-right {
   align-self: flex-end;
 }
 
 @media (max-width: 860px) {
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 
   .hero-text {
     padding: 28px;
   }
 }
