 :root {
   --ink: #1a1a1a;
   --muted: #4b4b4b;
   --paper: #f6f4f0;
   --stone: #e7e2db;
   --accent: #2b5b4b;
   --accent-soft: #d7e6df;
   --sun: #c9a56b;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 header {
   padding: 24px 6%;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .ad-label {
   padding: 6px 10px;
   background: var(--accent-soft);
   border-radius: 999px;
   font-size: 12px;
   color: var(--accent);
 }
 
 .menu {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .hero {
   min-height: 420px;
   display: flex;
   align-items: flex-end;
   padding: 60px 6%;
   position: relative;
   color: #ffffff;
   background-color: #2a2a2a;
 }
 
 .hero-bg {
   background-image: url("https://images.unsplash.com/photo-1515169067865-5387ec356754?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .hero-overlay {
   background: rgba(0, 0, 0, 0.45);
   padding: 32px;
   max-width: 620px;
   border-radius: 12px;
 }
 
 .hero-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: none;
   padding: 12px 18px;
   font-size: 14px;
   cursor: pointer;
   border-radius: 999px;
 }
 
 .btn-primary {
   background: var(--sun);
   color: #1f1a14;
 }
 
 .btn-secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid rgba(255, 255, 255, 0.6);
 }
 
 .section {
   padding: 0 6%;
 }
 
 .section.block {
   padding: 36px 6%;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 300px;
 }
 
 .offset-card {
   background: #ffffff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
   transform: translateY(-16px);
 }
 
 .image-frame {
   background: var(--stone);
   padding: 8px;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
   border-radius: 12px;
 }
 
 .bg-archive {
   background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
   background-color: #2a2a2a;
 }
 
 .bg-overlay {
   background: rgba(20, 20, 20, 0.58);
   padding: 32px;
   border-radius: 18px;
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: #ffffff;
   padding: 20px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .image-frame {
   height: 180px;
 }
 
 .card .image-frame img {
   height: 100%;
 }
 
 .testimonial {
   background: #ffffff;
   padding: 18px;
   border-radius: 14px;
   border-left: 4px solid var(--accent);
 }
 
 .pricing {
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-card {
   background: #ffffff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #d1ccc6;
   font-size: 14px;
 }
 
 .inline-cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 16px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   z-index: 10;
 }
 
 footer {
   padding: 40px 6%;
   background: #111111;
   color: #e5e5e5;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   padding: 16px;
   border-radius: 16px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .legal-page {
   max-width: 820px;
   margin: 0 auto;
   padding: 24px 6%;
   background: #ffffff;
   border-radius: 18px;
 }
 
 .contact-card {
   background: #ffffff;
   padding: 24px;
   border-radius: 18px;
 }
