 :root {
   color-scheme: light;
   --bg: #f7f4f1;
   --bg-alt: #efe9e4;
   --bg-dark: #1d1f24;
   --text: #1b1c1f;
   --muted: #5b616b;
   --accent: #bd5b2a;
   --accent-dark: #9b4621;
   --line: rgba(0, 0, 0, 0.12);
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .site-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 20px 6vw;
   border-bottom: 1px solid var(--line);
   background: #fffaf6;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 18px;
 }
 
 .nav a {
   font-size: 0.95rem;
 }
 
 .nav-toggle {
   display: none;
   border: 1px solid var(--line);
   background: #fff;
   padding: 8px 12px;
   border-radius: 20px;
   cursor: pointer;
 }
 
 .ad-label {
   font-size: 0.82rem;
   color: var(--muted);
   border-left: 1px solid var(--line);
   padding-left: 16px;
 }
 
 .hero {
   padding: 50px 6vw 40px;
 }
 
 .split {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 36px;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content,
 .split-media {
   flex: 1 1 320px;
 }
 
 .split-media {
   background: #e4ded8;
   border-radius: 24px;
   overflow: hidden;
   min-height: 280px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.75rem;
   letter-spacing: 0.22rem;
   color: var(--muted);
 }
 
 h1,
 h2,
 h3 {
   margin: 0 0 16px;
 }
 
 h1 {
   font-size: clamp(2.4rem, 3.2vw, 3.4rem);
   line-height: 1.1;
 }
 
 h2 {
   font-size: clamp(1.7rem, 2.4vw, 2.4rem);
 }
 
 p {
   margin: 0 0 16px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 30px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   padding: 50px 6vw;
 }
 
 .section-alt {
   background: var(--bg-alt);
 }
 
 .section-dark {
   background: var(--bg-dark);
   color: #f9f7f3;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   min-height: 100%;
 }
 
 .card-content {
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .quote {
   font-style: italic;
   padding: 18px 20px;
   border-left: 3px solid var(--accent);
   background: rgba(255, 255, 255, 0.6);
 }
 
 .form-card {
   background: #ffffff;
   border-radius: 24px;
   padding: 28px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 6vw;
   background: #121418;
   color: #f5f0ea;
 }
 
 .footer-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
 }
 
 .footer a {
   color: #f5f0ea;
   text-decoration: underline;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 10;
 }
 
 .sticky-cta button {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 24px;
   cursor: pointer;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   border: 1px solid var(--line);
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .cookie-actions button {
   padding: 8px 14px;
   border-radius: 18px;
   border: 1px solid var(--line);
   background: #fff;
   cursor: pointer;
 }
 
 .cookie-actions button.primary {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .hero-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin: 20px 0 24px;
 }
 
 .hero-list span {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .legal {
   background: #fff;
   border-radius: 20px;
   padding: 30px;
   border: 1px solid var(--line);
 }
 
 .page-hero {
   padding: 40px 6vw 10px;
 }
 
 .small-image {
   height: 220px;
 }
 
 @media (max-width: 900px) {
   .site-header {
     flex-wrap: wrap;
     align-items: center;
   }
 
   .nav {
     display: none;
     width: 100%;
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
     padding-top: 12px;
   }
 
   .nav.open {
     display: flex;
   }
 
   .nav-toggle {
     display: inline-flex;
   }
 
   .ad-label {
     border-left: none;
     padding-left: 0;
   }
 }
