 :root {
   --ink: #1c2026;
   --muted: #5e6773;
   --accent: #1b6b5f;
   --accent-soft: #e7f3ef;
   --paper: #f5f2ed;
   --sun: #f4e8d8;
   --slate: #dce4ea;
   --shadow: rgba(20, 24, 28, 0.08);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #fbfbf9;
   line-height: 1.6;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }

 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 .top-bar {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 18px 6vw;
   background: var(--paper);
   border-bottom: 1px solid #e2d8c9;
 }

 .ad-label {
   font-size: 0.92rem;
   color: var(--muted);
 }

 .nav {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
 }

 .brand {
   font-weight: 700;
   letter-spacing: 0.6px;
   text-transform: lowercase;
 }

 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.95rem;
 }

 .hero {
   color: #fefefe;
   padding: 80px 6vw 110px;
   display: flex;
   flex-direction: column;
   gap: 28px;
   background-size: cover;
   background-position: center;
   position: relative;
 }

 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(16, 20, 25, 0.55);
 }

 .hero-content {
   position: relative;
   max-width: 720px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   z-index: 1;
 }

 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.4rem);
   margin: 0;
 }

 .hero p {
   margin: 0;
   font-size: 1.05rem;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   font-weight: 600;
   font-size: 0.95rem;
 }

 .btn-outline {
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
 }

 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 72px;
   padding: 60px 6vw 90px;
 }

 .section {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }

 .section-heading {
   font-size: 1.7rem;
   margin: 0;
 }

 .magazine-row {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: stretch;
 }

 .column {
   flex: 1 1 280px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .pull-quote {
   background: var(--sun);
   padding: 24px;
   border-radius: 18px;
   font-size: 1.1rem;
 }

 .card {
   background: #fff;
   padding: 22px;
   border-radius: 18px;
   box-shadow: 0 16px 40px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .card-title {
   font-weight: 600;
   margin: 0;
 }

 .price {
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--accent);
 }

 .img-frame {
   background-color: #d6dbe0;
   border-radius: 16px;
   overflow: hidden;
 }

 .section-slab {
   background: var(--slate);
   padding: 34px;
   border-radius: 22px;
 }

 .section-slab.alt {
   background: var(--accent-soft);
 }

 .inline-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 18px;
 }

 .form-wrap {
   background: #fff;
   padding: 26px;
   border-radius: 20px;
   box-shadow: 0 14px 32px var(--shadow);
 }

 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .field {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 label {
   font-weight: 600;
   font-size: 0.95rem;
 }

 select,
 input,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #d7dce2;
   font-size: 1rem;
   font-family: inherit;
 }

 .note {
   color: var(--muted);
   font-size: 0.93rem;
 }

 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   z-index: 20;
 }

 .footer {
   background: var(--paper);
   padding: 40px 6vw 60px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   border-top: 1px solid #e2d8c9;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }

 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 16px 36px var(--shadow);
   max-width: 320px;
   display: none;
   z-index: 25;
 }

 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }

 .cookie-actions button {
   flex: 1;
   padding: 10px 12px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   background: var(--accent);
   color: #fff;
 }

 .cookie-actions button.secondary {
   background: #dfe6ea;
   color: var(--ink);
 }

 .hero-home {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
 }

 .hero-about {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
 }

 .hero-services {
   background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
 }

 .hero-contact {
   background-image: url("https://images.unsplash.com/photo-1503428593586-e225b39bddfe?w=1400&q=80");
 }

 .hero-privacy {
   background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
 }

 .hero-gdpr {
   background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
 }

 .hero-cookies {
   background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
 }

 .hero-terms {
   background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
 }

 .hero-thanks {
   background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
 }

 .hero-legal {
   background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
 }

 .bg-feature {
   background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
   padding: 34px;
   border-radius: 22px;
   position: relative;
   overflow: hidden;
 }

 .bg-feature::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 24, 28, 0.6);
 }

 .bg-feature > * {
   position: relative;
   z-index: 1;
 }

 .service-gallery {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .service-gallery .card {
   flex: 1 1 240px;
 }

 @media (max-width: 860px) {
   .hero {
     padding: 70px 6vw 90px;
   }
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
