 :root {
   --ink: #1e1e1e;
   --muted: #5a5f66;
   --accent: #b85a2a;
   --accent-dark: #8f421b;
   --bg: #f6f2ee;
   --sand: #f0e7dc;
   --stone: #e2ded8;
   --night: #2b2f33;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .site-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 6vw 10px;
   background: #fff;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav a:hover,
 .nav a:focus {
   color: var(--accent);
 }
 
 .ad-label {
   font-size: 0.8rem;
   color: var(--muted);
   max-width: 220px;
   text-align: right;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 36px 6vw 48px;
 }
 
 .hero-top {
   display: flex;
   gap: 40px;
   align-items: flex-start;
   flex-wrap: wrap;
 }
 
 .hero-copy {
   flex: 1 1 340px;
 }
 
 .hero-copy h1 {
   font-size: clamp(2.4rem, 4vw, 3.6rem);
   margin: 0 0 16px;
 }
 
 .hero-copy p {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 22px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: none;
   cursor: pointer;
   font-size: 1rem;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus {
   background: var(--sand);
 }
 
 .image-frame {
   position: relative;
   background: var(--stone);
   overflow: hidden;
   border-radius: 20px;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .hero-image {
   flex: 1 1 320px;
   min-height: 320px;
 }
 
 .offset-panel {
   display: flex;
   gap: 32px;
   padding: 0 6vw 50px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .offset-panel .copy {
   flex: 1 1 320px;
   background: #fff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 14px 30px rgba(25, 25, 25, 0.08);
   margin-top: -40px;
 }
 
 .offset-panel .copy h2 {
   margin-top: 0;
 }
 
 .offset-panel .image-frame {
   flex: 1 1 320px;
   min-height: 280px;
 }
 
 .stripe {
   background: var(--night);
   color: #fff;
   padding: 50px 6vw;
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .stripe h2 {
   margin: 0 0 12px;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 60px 6vw;
 }
 
 .service-row {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: 0 10px 24px rgba(30, 30, 30, 0.06);
 }
 
 .card-image {
   height: 180px;
 }
 
 .service-card h3 {
   margin: 0;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .flow-section {
   padding: 60px 6vw;
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .flow-section.reverse {
   flex-direction: row-reverse;
 }
 
 .flow-section .text {
   flex: 1 1 320px;
 }
 
 .flow-section .image-frame {
   flex: 1 1 300px;
   min-height: 260px;
 }
 
 .form-section {
   padding: 60px 6vw 90px;
   background: var(--sand);
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
 }
 
 .form-card {
   flex: 1 1 320px;
   background: #fff;
   border-radius: 20px;
   padding: 28px;
   box-shadow: 0 14px 30px rgba(25, 25, 25, 0.08);
 }
 
 .form-card form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc7bd;
   font-size: 1rem;
   font-family: inherit;
 }
 
 .note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .testimonial {
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   margin-top: 18px;
 }
 
 .footer {
   padding: 40px 6vw 60px;
   background: #fff;
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .disclaimer {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 520px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 0.95rem;
   box-shadow: 0 10px 20px rgba(30, 30, 30, 0.2);
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background: var(--accent-dark);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
   background: #fff;
   padding: 16px 18px;
   border-radius: 14px;
   box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   align-items: center;
   z-index: 10;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .simple-page {
   padding: 48px 6vw 80px;
 }
 
 .simple-page h1 {
   margin-top: 0;
   font-size: clamp(2rem, 3vw, 2.8rem);
 }
 
 .simple-layout {
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
 }
 
 .stack-gap {
   margin-top: 32px;
 }
 
 .simple-layout .image-frame {
   flex: 1 1 280px;
   min-height: 260px;
 }
 
 .simple-layout .text-block {
   flex: 1 1 320px;
 }
 
 .contact-card {
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   margin-top: 20px;
 }
