 :root {
   --bg: #f6f2ee;
   --bg-strong: #efe6df;
   --ink: #2a2320;
   --muted: #6a5e57;
   --accent: #8b4f2a;
   --accent-dark: #5f3118;
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 .page {
   max-width: 1160px;
   margin: 0 auto;
   padding: 0 24px 120px;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 0 12px;
 }
 
 .brand {
   font-size: 22px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
   justify-content: flex-end;
   text-align: right;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   border: 1px solid var(--muted);
   padding: 4px 8px;
   border-radius: 999px;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: stretch;
   padding: 48px 0;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text,
 .split .media {
   flex: 1;
 }
 
 .hero {
   padding-top: 28px;
 }
 
 .hero .text {
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }
 
 .eyebrow {
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: 1.6px;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   margin: 0 0 12px;
   line-height: 1.2;
 }
 
 h1 {
   font-size: 40px;
 }
 
 h2 {
   font-size: 28px;
 }
 
 h3 {
   font-size: 20px;
 }
 
 .lead {
   font-size: 18px;
   color: var(--muted);
 }
 
 .panel {
   background: var(--card);
   border-radius: 18px;
   padding: 22px;
   box-shadow: 0 16px 30px rgba(42, 35, 32, 0.08);
 }
 
 .panel.soft {
   background: var(--bg-strong);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent-dark);
 }
 
 .image-wrap {
   background: #d9c8bc;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .grid-cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   gap: 16px;
   padding: 16px;
   background: var(--card);
   border-radius: 16px;
   align-items: center;
 }
 
 .card .thumb {
   width: 140px;
   flex-shrink: 0;
   border-radius: 12px;
   overflow: hidden;
   background: #d6c4b8;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .form-card {
   background: var(--card);
   padding: 22px;
   border-radius: 18px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input, select, textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cbb9ad;
   font-size: 14px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 90px;
   resize: vertical;
 }
 
 .split-note {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer {
   padding: 40px 0 80px;
   color: var(--muted);
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .cta-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--accent-dark);
   color: #fff;
   padding: 10px 16px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 16px;
 }
 
 .cta-bar a {
   color: #fff;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   right: 18px;
   bottom: 70px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   width: 280px;
   box-shadow: 0 18px 34px rgba(42, 35, 32, 0.12);
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
   padding: 8px 10px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-actions .reject {
   background: #eee3da;
   color: var(--accent-dark);
 }
 
 .legal-block {
   background: var(--card);
   border-radius: 18px;
   padding: 20px;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .spacer {
   height: 16px;
 }
 
 @media (max-width: 920px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
   .cta-bar {
     flex-direction: column;
   }
 }
