 :root {
   --bg: #f6f4f1;
   --ink: #1f1b17;
   --muted: #6b5f55;
   --accent: #8c4f2e;
   --accent-dark: #6c3a21;
   --sand: #efe7de;
   --stone: #ddd2c7;
   --leaf: #3f4d3c;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
   min-height: 100vh;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 22px 6vw;
   background: var(--white);
   border-bottom: 1px solid var(--stone);
 }
 
 .nav-left {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
 }
 
 .ad-label {
   font-size: 0.82rem;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a:hover {
   color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 30px;
   padding: 70px 6vw 60px;
   background: linear-gradient(120deg, rgba(246, 244, 241, 0.88), rgba(246, 244, 241, 0.4)), url("https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?w=1400&q=80") center/cover no-repeat;
 }
 
 .hero-content {
   max-width: 620px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero h1 {
   font-size: 2.8rem;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .cta-button {
   background: var(--accent);
   color: var(--white);
   border: none;
   padding: 14px 26px;
   border-radius: 999px;
   font-size: 1rem;
   cursor: pointer;
   width: fit-content;
 }
 
 .cta-button:hover {
   background: var(--accent-dark);
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .insight-banner {
   background: linear-gradient(120deg, rgba(239, 231, 222, 0.92), rgba(239, 231, 222, 0.55)), url("https://images.unsplash.com/photo-1479064555552-3ef4979f8908?w=1400&q=80") center/cover no-repeat;
 }
 
 .split {
   display: flex;
   gap: 36px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text-block {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split .image-block {
   flex: 1 1 320px;
   background: var(--stone);
   padding: 10px;
 }
 
 .storyline {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .storyline-item {
   display: flex;
   gap: 20px;
   align-items: flex-start;
 }
 
 .storyline-item .dot {
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: var(--leaf);
   margin-top: 6px;
 }
 
 .feature-cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--white);
   border: 1px solid var(--stone);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .card-image {
   background: #cdbfb2;
   border-radius: 14px;
   overflow: hidden;
 }
 
 .bg-warm-1 { background: #cbb9ab; }
 .bg-warm-2 { background: #d7cabc; }
 .bg-warm-3 { background: #d1c2b4; }
 .bg-warm-4 { background: #cfc2b5; }
 .bg-warm-5 { background: #dbcfc4; }
 .bg-warm-6 { background: #d7c8bc; }
 .bg-warm-7 { background: #cbb9ab; }
 .bg-warm-8 { background: #d5c8bb; }
 .bg-warm-9 { background: #d2c4b8; }
 .bg-warm-10 { background: #d2c2b4; }
 
 .card h3 {
   margin: 0;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .quote {
   font-style: italic;
   border-left: 3px solid var(--accent);
   padding-left: 16px;
   color: var(--muted);
 }
 
 .inline-cta a {
   color: var(--accent);
   font-weight: 600;
 }
 
 .inline-cta a:hover {
   color: var(--accent-dark);
 }
 
 .form-wrap {
   background: var(--white);
   border-radius: 22px;
   padding: 26px;
   border: 1px solid var(--stone);
   display: flex;
   flex-direction: column;
   gap: 14px;
   max-width: 560px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.92rem;
 }
 
 input,
 select {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--stone);
   font-size: 1rem;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .ghost-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 16px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .ghost-link:hover {
   border-color: var(--accent-dark);
   color: var(--accent-dark);
 }
 
 .floating-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--leaf);
   color: var(--white);
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 0.95rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }
 
 .floating-cta:hover {
   background: #2f3a2c;
 }
 
 .footer {
   background: var(--white);
   border-top: 1px solid var(--stone);
   padding: 40px 6vw;
   display: flex;
   flex-direction: column;
   gap: 18px;
   font-size: 0.92rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .footer-links a:hover {
   color: var(--accent);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--white);
   border: 1px solid var(--stone);
   border-radius: 16px;
   padding: 18px;
   max-width: 320px;
   display: none;
   gap: 12px;
   flex-direction: column;
   z-index: 999;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-button {
   border-radius: 999px;
   padding: 10px 14px;
   border: none;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: var(--white);
 }
 
 .cookie-reject {
   background: var(--stone);
   color: var(--ink);
 }
 
 .cookie-button:hover {
   opacity: 0.9;
 }
 
 .simple-hero {
   padding: 60px 6vw;
   background: var(--sand);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .content-block {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 40px 6vw 70px;
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .highlight {
   background: var(--sand);
   padding: 16px;
   border-radius: 12px;
 }
