 :root {
   --bg: #f7f3ee;
   --ink: #1f1a17;
   --muted: #6c625c;
   --accent: #c05a3c;
   --accent-2: #2d5d64;
   --paper: #ffffff;
   --sand: #efe6dd;
   --shadow: 0 12px 30px rgba(31, 26, 23, 0.12);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }

 a {
   color: var(--accent-2);
   text-decoration: none;
 }

 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }

 header {
   padding: 28px 5vw 12px;
 }

 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   border-bottom: 1px solid rgba(31, 26, 23, 0.1);
   padding-bottom: 16px;
 }

 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }

 .brand strong {
   font-size: 20px;
   letter-spacing: 0.5px;
 }

 .ad-label {
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--muted);
 }

 nav {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
 }

 nav a {
   font-size: 14px;
   color: var(--ink);
 }

 .page {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 24px 5vw 80px;
 }

 .section {
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
   align-items: stretch;
 }

 .section.reverse {
   flex-direction: row-reverse;
 }

 .section .column {
   flex: 1 1 320px;
   min-width: 280px;
 }

 .section .column.narrow {
   flex: 0.8 1 260px;
 }

 .section .column.wide {
   flex: 1.2 1 360px;
 }

 .card {
   background: var(--paper);
   padding: 24px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }

 .card-grid .card {
   flex: 1 1 240px;
 }

 .hero {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
   align-items: center;
 }

 .hero .hero-text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .hero .hero-visual {
   flex: 1 1 360px;
   border-radius: 24px;
   overflow: hidden;
   background: #dcd0c3;
   min-height: 360px;
 }

 .hero .hero-visual img {
   width: 100%;
   height: 100%;
 }

 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }

 .btn {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 12px 22px;
   border-radius: 999px;
   cursor: pointer;
   font-size: 14px;
 }

 .btn.secondary {
   background: var(--accent-2);
 }

 .inline-cta {
   font-weight: 600;
 }

 .note {
   background: var(--sand);
   padding: 18px 22px;
   border-radius: 16px;
 }

 .pricing {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .price-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 18px;
   border-radius: 16px;
   background: var(--paper);
 }

 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--accent);
 }

 .form-shell {
   background: var(--paper);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 label {
   font-size: 14px;
 }

 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid rgba(31, 26, 23, 0.2);
   font-size: 14px;
   background: #fff;
 }

 .split-banner {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   background: #1f1a17;
   color: #fff;
   padding: 24px 5vw;
   align-items: center;
 }

 .split-banner .banner-text {
   flex: 1 1 280px;
 }

 .split-banner .banner-action {
   flex: 0 1 220px;
 }

 .magazine-columns {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }

 .magazine-columns .column {
   flex: 1 1 260px;
 }

 .media-block {
   border-radius: 18px;
   overflow: hidden;
   background: #d7cabc;
 }

 .media-block img {
   width: 100%;
   height: 100%;
 }

 .footer {
   padding: 32px 5vw 48px;
   background: #15110f;
   color: #f2ece6;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .footer a {
   color: #f2ece6;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }

 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--paper);
   padding: 18px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 100;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .cookie-actions .btn {
   flex: 1 1 120px;
 }

 .sticky-cta {
   position: sticky;
   bottom: 0;
   padding: 14px 5vw;
   background: rgba(31, 26, 23, 0.94);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }

 .sticky-cta button {
   background: #f0c56b;
   color: #1f1a17;
 }

 .image-caption {
   font-size: 12px;
   color: var(--muted);
 }

 .bg-hero {
   background: #d8cec2;
 }

 .bg-road {
   background: #d5c7b4;
 }

 .bg-valley {
   background: #c9d4d0;
 }

 .bg-lake {
   background: #d9cbb9;
 }

 .bg-rail {
   background: #d1c0b2;
 }

 .bg-forest {
   background: #cbd1d6;
 }

 .bg-city-night {
   background: #d9c7b8;
 }

 .bg-city-dawn {
   background: #c9c6c1;
 }

 .bg-trail {
   background: #cfd4d2;
 }

 .bg-coast {
   background: #d7cbbf;
 }

 .bg-cliff {
   background: #d4c0b6;
 }

 .bg-alps {
   background: #c5cfd3;
 }

 .bg-canal {
   background: #c9c1b6;
 }

 .bg-street {
   background: #c7cdd6;
 }

 .bg-venice {
   background: #d8c9b5;
 }

 .bg-bridge {
   background: #c0c8cf;
 }

 .bg-sky {
   background: #d5d9df;
 }

 .bg-station {
   background: #d1c4b8;
 }

 .bg-note {
   background: #d2cbbf;
 }

 .bg-urban {
   background: #c6cdd4;
 }

 .bg-mountain {
   background: #c8d2d8;
 }

 .bg-forestsoft {
   background: #cdd5cd;
 }

 .bg-canal-quiet {
   background: #d5c5b6;
 }

 @media (max-width: 720px) {
   .nav-wrap {
     flex-direction: column;
     align-items: flex-start;
   }
   .sticky-cta {
     flex-direction: column;
     align-items: flex-start;
   }
 }
