 :root {
   --ink: #1c1c1c;
   --muted: #5b5f64;
   --sand: #f5f0ea;
   --sage: #dce7e1;
   --clay: #e6d6c5;
   --night: #111417;
   --accent: #b04a2e;
   --accent-2: #2f7a6f;
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #faf8f5;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
 }
 
 header {
   padding: 28px 0 18px;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .logo {
   font-size: 24px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 nav {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   font-size: 15px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   border: 1px solid #d6d1cb;
   padding: 6px 10px;
   border-radius: 999px;
   background: #fff;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: stretch;
   margin: 36px 0;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 360px;
   padding: 24px;
   background: var(--card);
   border-radius: 18px;
   box-shadow: 0 12px 30px rgba(17, 20, 23, 0.06);
 }
 
 .split .media {
   flex: 1 1 360px;
   border-radius: 18px;
   overflow: hidden;
   background: var(--sage);
   min-height: 320px;
   display: flex;
   align-items: stretch;
 }
 
 .split .media.simple {
   background: var(--clay);
 }
 
 .split .media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .panel {
   padding: 28px;
   border-radius: 20px;
   background: var(--clay);
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .panel .panel-text {
   flex: 1 1 320px;
 }
 
 .panel .panel-image {
   flex: 1 1 320px;
   background: var(--sage);
   border-radius: 18px;
   overflow: hidden;
   min-height: 240px;
 }
 
 .panel .panel-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 260px;
   background: var(--card);
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 12px 24px rgba(17, 20, 23, 0.08);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 12px;
   background: var(--sage);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: var(--accent-2);
 }
 
 .btn.ghost {
   background: transparent;
   color: var(--ink);
   border: 1px solid #c9c4be;
 }
 
 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 #d6d1cb;
   font-size: 15px;
 }
 
 .form-note {
   font-size: 13px;
   color: var(--muted);
 }
 
 .inline-link {
   color: var(--accent-2);
   font-weight: 600;
 }
 
 footer {
   margin-top: 48px;
   padding: 32px 0 48px;
   border-top: 1px solid #e3ded7;
   color: var(--muted);
   font-size: 14px;
 }
 
 .footer-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .footer-grid div {
   flex: 1 1 220px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid #d6d1cb;
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   box-shadow: 0 12px 24px rgba(17, 20, 23, 0.08);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
   flex-wrap: wrap;
 }
 
 .hero {
   background: var(--night);
   color: #fff;
   border-radius: 24px;
   overflow: hidden;
 }
 
 .hero .text {
   background: transparent;
   box-shadow: none;
 }
 
 .hero .media {
   background: #2a2f33;
 }
 
 .bg-panel {
   border-radius: 22px;
   padding: 32px;
   background-size: cover;
   background-position: center;
   color: #fff;
   min-height: 260px;
   display: flex;
   align-items: flex-end;
 }
 
 .bg-panel .overlay {
   background: rgba(17, 20, 23, 0.55);
   padding: 18px;
   border-radius: 14px;
   max-width: 520px;
 }
 
 .image-hero {
   background-color: #2a2f33;
 }
 
 .image-hero img,
 .image-1 img,
 .image-2 img,
 .image-3 img,
 .image-4 img,
 .image-5 img,
 .image-6 img,
 .image-7 img,
 .image-8 img,
 .image-9 img,
 .image-10 img {
   object-fit: cover;
 }
 
 .bg-1 {
   background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80");
 }
 
 .bg-2 {
   background-image: url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400&q=80");
 }
 
 @media (max-width: 900px) {
   .sticky-cta {
     position: static;
     margin: 24px 0 0;
   }
 }
