 :root {
   --bg: #f6f4f1;
   --ink: #1c232b;
   --muted: #4d5a66;
   --accent: #2f5f6d;
   --accent-dark: #1b3d47;
   --light: #ffffff;
   --sand: #efe9e2;
   --slate: #d9e2e7;
   --olive: #dde3d6;
 }
 
 * {
   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: var(--accent-dark);
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 header {
   padding: 28px 6vw 10px;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 1px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .ad-label {
   font-size: 0.85rem;
   background: var(--sand);
   padding: 6px 10px;
   border-radius: 20px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   padding: 40px 6vw 60px;
 }
 
 .hero-text,
 .hero-media {
   flex: 1 1 320px;
 }
 
 .hero-media {
   background: var(--slate);
   border-radius: 24px;
   overflow: hidden;
 }

 .image-frame {
   background-color: var(--slate);
   border-radius: 18px;
   overflow: hidden;
 }

 .frame-slate {
   background-color: var(--slate);
 }

 .frame-sand {
   background-color: var(--sand);
 }

 .frame-olive {
   background-color: var(--olive);
 }

 .frame-ink {
   background-color: var(--ink);
 }
 
 .hero-text h1 {
   font-size: 2.6rem;
   margin-bottom: 14px;
 }
 
 .button-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 20px;
 }
 
 .btn {
   padding: 12px 18px;
   border-radius: 24px;
   background: var(--accent);
   color: var(--light);
   border: none;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .btn.secondary {
   background: var(--ink);
 }
 
 .btn.ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 section {
   padding: 40px 6vw;
 }
 
 .split-section {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
   align-items: stretch;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-card,
 .split-copy {
   flex: 1 1 320px;
 }
 
 .split-card {
   background: var(--light);
   padding: 24px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split-card.alt {
   background: var(--olive);
 }
 
 .list-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .list-item {
   padding: 18px;
   border-radius: 16px;
   background: var(--light);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .list-item img {
   border-radius: 12px;
 }
 
 .pricing-tag {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .quote {
   font-style: italic;
   background: var(--sand);
   padding: 18px;
   border-radius: 16px;
 }
 
 .form-wrap {
   background: var(--light);
   padding: 24px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #c8d0d6;
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--ink);
   color: var(--light);
   padding: 14px 16px;
   border-radius: 26px;
   display: flex;
   gap: 10px;
   align-items: center;
   z-index: 10;
 }
 
 .sticky-cta button {
   background: var(--accent);
   border: none;
   color: var(--light);
   padding: 8px 14px;
   border-radius: 18px;
   cursor: pointer;
 }
 
 footer {
   padding: 30px 6vw 60px;
   background: var(--ink);
   color: var(--light);
 }
 
 footer a {
   color: var(--light);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 16px 0;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 340px;
   background: var(--light);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 12px;
 }
 
 .hidden {
   display: none;
 }
 
 .note {
   background: var(--slate);
   padding: 14px;
   border-radius: 14px;
 }
 
 .stacked {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .address-card {
   background: var(--light);
   padding: 20px;
   border-radius: 18px;
 }
