 :root {
   --ink: #1f2430;
   --muted: #5b6473;
   --paper: #f8f5f1;
   --accent: #2c6f7a;
   --accent-soft: #e0f0f2;
   --sun: #f4d9b0;
   --shadow: rgba(31, 36, 48, 0.12);
   --line: rgba(31, 36, 48, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--paper);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   padding: 32px 24px;
   background: #ffffff;
   border-right: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .brand-name {
   font-size: 22px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   text-transform: uppercase;
   letter-spacing: 0.9px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-weight: 600;
 }
 
 .nav a {
   padding: 6px 0;
 }
 
 .sidebar-cta {
   margin-top: auto;
   background: var(--accent-soft);
   padding: 16px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .content {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 section {
   padding: 56px 64px;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero {
   background-color: #f1ede8;
 }
 
 .hero-split {
   display: flex;
   flex-direction: row;
   gap: 32px;
   align-items: center;
 }
 
 .hero-copy {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-visual {
   flex: 1;
   min-height: 360px;
   border-radius: 24px;
   overflow: hidden;
   background-color: #d9cfc2;
   background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .hero-inline {
   display: flex;
   gap: 16px;
   align-items: center;
 }
 
 .hero-inline .img-frame {
   width: 160px;
   height: 120px;
   border-radius: 16px;
   overflow: hidden;
   background-color: #e3dad0;
 }
 
 .headline {
   font-size: 38px;
   line-height: 1.2;
   margin: 0;
 }
 
 .lead {
   font-size: 18px;
   color: var(--muted);
   margin: 0;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #ffffff;
   box-shadow: 0 8px 20px var(--shadow);
 }
 
 .btn-secondary {
   background: #ffffff;
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .btn-ghost {
   background: transparent;
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 12px 24px var(--shadow);
 }
 
 .section-alt {
   background: #ffffff;
 }
 
 .story-grid {
   display: flex;
   gap: 32px;
 }
 
 .story-grid .panel {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .img-frame {
   border-radius: 20px;
   overflow: hidden;
   background-color: #e6dfd7;
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: #ffffff;
   border-radius: 20px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 12px 24px rgba(31, 36, 48, 0.08);
 }
 
 .card .img-frame {
   height: 160px;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .bg-context {
   background-color: #f2e8dd;
   background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
 }
 
 .bg-context .lead,
 .bg-context p {
   color: #ffffff;
 }
 
 .trust-row {
   display: flex;
   gap: 28px;
   align-items: stretch;
 }
 
 .trust-row .img-frame {
   flex: 1;
 }
 
 .trust-row .details {
   flex: 1.2;
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #ffffff;
   padding: 20px;
   border-radius: 18px;
 }
 
 .form-section {
   background: #ffffff;
 }
 
 .form-wrap {
   display: flex;
   gap: 24px;
 }
 
 .form-wrap form {
   flex: 1.3;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-wrap .form-notes {
   flex: 1;
   background: var(--accent-soft);
   padding: 20px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 15px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   background: #ffffff;
   border-top: 1px solid var(--line);
   padding: 32px 64px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 5;
 }
 
 .sticky-cta a {
   background: var(--sun);
   color: var(--ink);
   padding: 12px 18px;
   border-radius: 999px;
   display: inline-flex;
   font-weight: 700;
   box-shadow: 0 10px 20px var(--shadow);
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px 20px;
   box-shadow: 0 12px 24px rgba(31, 36, 48, 0.12);
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 320px;
   z-index: 6;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .legal-hero {
   background: #ffffff;
 }
 
 .legal-content {
   display: flex;
   flex-direction: column;
   gap: 16px;
   max-width: 760px;
 }
 
 .services-hero {
   background-color: #efe6db;
   background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
 }
 
 .services-hero .lead {
   color: #ffffff;
 }
 
 .services-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 20px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-card .img-frame {
   height: 150px;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--accent);
 }
 
 .about-hero {
   background: #ffffff;
 }
 
 .about-split {
   display: flex;
   gap: 32px;
   align-items: center;
 }
 
 .about-split .img-frame {
   flex: 1;
   height: 320px;
 }
 
 .about-split .copy {
   flex: 1.2;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .contact-blocks {
   display: flex;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (max-width: 980px) {
   .page {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 
   .sidebar-cta {
     margin-top: 0;
   }
 
   .hero-split,
   .story-grid,
   .trust-row,
   .form-wrap,
   .about-split,
   .contact-blocks {
     flex-direction: column;
   }
 
   section,
   .footer {
     padding: 40px 24px;
   }
 }
