 :root {
   color-scheme: light;
   --ink: #1f2a36;
   --muted: #5a6a7a;
   --accent: #3a6ea5;
   --accent-dark: #2d557f;
   --sand: #f4f0ea;
   --mist: #e6eef3;
   --pine: #2f4b3a;
   --cream: #fffaf4;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--cream);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .site-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 2.5rem 6vw 1.5rem;
   gap: 2rem;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 0.35rem;
 }
 
 .brand-mark {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.08rem;
   text-transform: lowercase;
 }
 
 .brand-tag {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .site-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem 1.5rem;
   align-items: center;
   justify-content: flex-end;
   max-width: 520px;
 }
 
 .site-nav a {
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   background: var(--sand);
   padding: 0.35rem 0.75rem;
   border-radius: 999px;
   color: var(--muted);
 }
 
 main {
   flex: 1;
 }
 
 .section {
   padding: 4.5rem 6vw;
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .section-tight {
   padding: 3.5rem 6vw;
 }
 
 .section-alt {
   background: var(--mist);
 }
 
 .section-sand {
   background: var(--sand);
 }
 
 .hero {
   display: flex;
   gap: 3rem;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1.2;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero-text h1 {
   font-size: clamp(2.2rem, 3.2vw, 3.4rem);
   line-height: 1.15;
 }
 
 .hero-text p {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   align-items: center;
 }
 
 .hero-image {
   flex: 1;
   min-height: 360px;
 }
 
 .image-frame {
   background: #dbe5ec;
   padding: 0.5rem;
   border-radius: 1.2rem;
   height: 100%;
 }
 
 .offset-row {
   display: flex;
   gap: 2.5rem;
   align-items: flex-start;
 }
 
 .offset-row.reverse {
   flex-direction: row-reverse;
 }
 
 .offset-copy {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }
 
 .offset-visual {
   flex: 0.9;
   min-height: 260px;
 }
 
 .sticky-cta {
   align-self: flex-start;
   position: sticky;
   top: 1.5rem;
   background: var(--pine);
   color: #fff;
   padding: 1.5rem;
   border-radius: 1.2rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   min-width: 220px;
 }
 
 .sticky-cta p {
   font-size: 0.95rem;
   color: #e8f1eb;
 }
 
 .bg-journey {
   background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-color: #c9d4d2;
   border-radius: 1.5rem;
   padding: 3rem;
   color: #fff;
   min-height: 280px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   gap: 1rem;
 }
 
 .bg-journey p {
   max-width: 520px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 1.2rem;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   box-shadow: 0 18px 35px rgba(28, 40, 52, 0.08);
 }
 
 .card h3 {
   font-size: 1.15rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--mist);
   padding: 0.4rem 0.85rem;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .split-row {
   display: flex;
   gap: 2rem;
   align-items: stretch;
 }
 
 .split-col {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .form-card {
   background: #fff;
   border-radius: 1.5rem;
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
   box-shadow: 0 20px 40px rgba(31, 42, 54, 0.1);
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 0.75rem 0.9rem;
   border-radius: 0.75rem;
   border: 1px solid #ccd6de;
   font-size: 0.95rem;
   background: #fff;
   color: var(--ink);
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 0.8rem 1.4rem;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent-dark);
 }
 
 .link-cta {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .testimonial {
   border-left: 3px solid var(--accent);
   padding-left: 1rem;
   color: var(--muted);
 }
 
 .site-footer {
   padding: 3rem 6vw 4rem;
   background: #1f2a36;
   color: #d4dde5;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem 1.5rem;
 }
 
 .footer-meta {
   font-size: 0.9rem;
   color: #b9c4ce;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.5rem;
   right: 1.5rem;
   background: #fff;
   color: var(--ink);
   border-radius: 1.2rem;
   padding: 1.25rem;
   box-shadow: 0 20px 40px rgba(31, 42, 54, 0.18);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 1rem;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   align-items: center;
 }
 
 .legal-hero {
   background: var(--mist);
   border-radius: 1.4rem;
   padding: 2.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .legal-content {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   max-width: 760px;
 }
 
 .contact-block {
   background: #fff;
   border-radius: 1.2rem;
   padding: 2rem;
   box-shadow: 0 18px 30px rgba(31, 42, 54, 0.08);
 }
 
 .service-cards img {
   border-radius: 0.9rem;
 }
 
 @media (max-width: 980px) {
   .hero,
   .offset-row,
   .split-row {
     flex-direction: column;
   }
 
   .site-header {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     position: static;
   }
 }
