 :root {
   --bg: #0f1115;
   --bg-soft: #161a22;
   --bg-alt: #f5f3ef;
   --text: #12141a;
   --text-light: #f7f7f2;
   --accent: #2e7d6b;
   --accent-2: #9c6a2f;
   --card: #ffffff;
   --muted: #6c7380;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--text);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: inherit;
 }
 
 .page {
   width: 100%;
   display: flex;
   flex-direction: column;
 }
 
 .nav {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6%;
   background: #ffffff;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   flex-direction: row;
   gap: 18px;
   font-size: 14px;
 }
 
 .nav-links a {
   text-decoration: none;
 }
 
 .hero {
   min-height: 70vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 80px 6%;
   background-color: #1a1d24;
   background-size: cover;
   background-position: center;
   color: var(--text-light);
   position: relative;
 }
 
 .hero-index {
   background-image: url("https://images.unsplash.com/photo-1517832207067-4db24a2ae47c?w=1400&q=80");
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(12, 14, 18, 0.55);
 }
 
 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 640px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero h1 {
   font-size: 44px;
   line-height: 1.1;
 }
 
 .hero p {
   font-size: 18px;
   color: #e8e8e2;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border: none;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   text-decoration: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: var(--accent-2);
 }
 
 .section {
   padding: 70px 6%;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .section.dark {
   background: var(--bg);
   color: var(--text-light);
 }
 
 .split {
   display: flex;
   flex-direction: row;
   gap: 40px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split-media {
   flex: 1;
   padding: 8px;
 }
 
 .cards {
   display: flex;
   flex-direction: row;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border: 1px solid #e6e2da;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   width: 100%;
   height: 180px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .inline-cta {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .sticky-wrap {
   display: flex;
   flex-direction: row;
   gap: 30px;
 }
 
 .sticky-box {
   flex: 0 0 280px;
   background: #fff5e8;
   border: 1px solid #e7d5bd;
   padding: 18px;
   position: sticky;
   top: 18px;
   align-self: flex-start;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .list-item {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .form-wrapper {
   background: #ffffff;
   border: 1px solid #d9d6cf;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border: 1px solid #b9b6ae;
   font-size: 14px;
   width: 100%;
 }
 
 .footer {
   padding: 40px 6%;
   background: var(--bg-soft);
   color: var(--text-light);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: row;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .footer a {
   text-decoration: none;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 18px;
   background: #ffffff;
   border: 1px solid #d9d6cf;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: row;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .page-header {
   padding: 50px 6% 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .page-header img {
   width: 100%;
   height: 260px;
 }
 
 .image-frame {
   padding: 8px;
 }
 
 .bg-sand-1 {
   background-color: #c9c5bd;
 }
 
 .bg-sand-2 {
   background-color: #d8d1c7;
 }
 
 .bg-sand-3 {
   background-color: #d3c9bf;
 }
 
 .bg-sand-4 {
   background-color: #d0c8be;
 }
 
 .bg-sand-5 {
   background-color: #c8c1b6;
 }
 
 .bg-sand-6 {
   background-color: #d9d0c4;
 }
 
 .bg-sand-7 {
   background-color: #d1c8bd;
 }
 
 .bg-sand-8 {
   background-color: #cfc6b9;
 }
 
 .simple-columns {
   display: flex;
   flex-direction: row;
   gap: 28px;
 }
 
 .simple-columns > div {
   flex: 1;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse,
   .sticky-wrap,
   .simple-columns {
     flex-direction: column;
   }
 
   .nav {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }
 
   .hero h1 {
     font-size: 34px;
   }
 
   .sticky-box {
     position: static;
   }
 }
