 :root {
   color-scheme: light;
   --ink: #1b1a17;
   --muted: #5c5a55;
   --paper: #f6f3ee;
   --sand: #ebe4da;
   --accent: #7b4f2c;
   --accent-dark: #5a3a21;
   --soft: #fffaf4;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   text-decoration: underline;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 280px;
   background: var(--sand);
   padding: 32px 24px;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   background: var(--soft);
   padding: 10px 12px;
   border-radius: 8px;
   line-height: 1.4;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav a {
   font-weight: 600;
 }
 
 .sidebar-note {
   font-size: 13px;
   color: var(--muted);
   line-height: 1.5;
 }
 
 .main {
   flex: 1;
 }
 
 .hero {
   background-image: url("https://images.unsplash.com/photo-1475724017904-b712052c192a?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
   color: #fff;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.48);
 }
 
 .hero-content {
   position: relative;
   padding: 80px 72px 64px;
   max-width: 760px;
 }
 
 .hero h1 {
   font-size: 40px;
   margin: 0 0 16px;
   line-height: 1.2;
 }
 
 .hero p {
   font-size: 18px;
   line-height: 1.7;
   margin: 0 0 24px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border-radius: 24px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   border: none;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   text-decoration: none;
 }
 
 .btn.outline {
   background: transparent;
   border: 1px solid #fff;
 }
 
 .section {
   padding: 64px 72px;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .section.tight {
   padding-top: 40px;
   padding-bottom: 40px;
 }
 
 .section-title {
   font-size: 28px;
   margin-bottom: 16px;
 }
 
 .section p {
   line-height: 1.7;
   color: var(--muted);
 }
 
 .media-split {
   display: flex;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .media-split.reverse {
   flex-direction: row-reverse;
 }
 
 .media-text {
   flex: 1 1 320px;
 }
 
 .media-image {
   flex: 1 1 320px;
   background: #d9d2c7;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .media-image img {
   width: 100%;
   height: 360px;
   object-fit: cover;
   display: block;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .image-box {
   background-color: #d6cfc4;
   border-radius: 12px;
   overflow: hidden;
 }
 
 .image-box img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   display: block;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 20px;
   background: var(--sand);
   color: var(--accent-dark);
   font-size: 12px;
   font-weight: 600;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .list-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .list-item span {
   font-weight: 700;
 }
 
 .quote {
   background: #fff;
   border-left: 4px solid var(--accent);
   padding: 16px 20px;
   border-radius: 12px;
 }
 
 .form-box {
   background: #fff;
   padding: 24px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 520px;
 }
 
 .form-box label {
   font-weight: 600;
 }
 
 .form-box input,
 .form-box select,
 .form-box textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #d3cbbc;
   font-size: 15px;
 }
 
 .form-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .form-row > div {
   flex: 1 1 220px;
 }
 
 .inline-link {
   font-weight: 600;
 }
 
 .footer {
   background: var(--sand);
   padding: 32px 72px;
   font-size: 13px;
   color: var(--muted);
 }
 
 .footer-top {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   margin-bottom: 16px;
 }
 
 .footer-col {
   flex: 1 1 200px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 18px;
   border-radius: 24px;
   font-weight: 600;
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background: #3d2817;
   text-decoration: none;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #fff;
   border-radius: 12px;
   padding: 16px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 8px;
 }
 
 .cookie-actions button {
   flex: 1;
   padding: 8px 12px;
   border-radius: 20px;
   border: none;
   font-weight: 600;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-reject {
   background: #e0d8cc;
   color: var(--ink);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .footer-links a {
   color: var(--muted);
 }
 
 .page-hero {
   background: #fff;
   padding: 48px 72px 24px;
 }
 
 .page-hero h1 {
   margin: 0;
   font-size: 32px;
 }
 
 .page-hero p {
   color: var(--muted);
 }
 
 .section-bg {
   background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
   color: #fff;
 }
 
 .section-bg::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(21, 17, 12, 0.5);
 }
 
 .section-bg .section-inner {
   position: relative;
   max-width: 720px;
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: baseline;
 }
 
 .table-row strong {
   min-width: 160px;
 }
 
 @media (max-width: 960px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
   }
 
   .nav {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .hero-content,
   .section,
   .page-hero,
   .footer {
     padding: 48px 32px;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
 
 @media (max-width: 640px) {
   .sidebar {
     padding: 24px 16px;
   }
 
   .hero-content,
   .section,
   .page-hero,
   .footer {
     padding: 40px 20px;
   }
 }
