 :root {
   color-scheme: light;
   --text: #141414;
   --muted: #5e6368;
   --accent: #f6b106;
   --accent-dark: #c98600;
   --bg: #f9f7f3;
   --bg-dark: #141414;
   --bg-soft: #ffffff;
   --line: #e3e1dd;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .nav {
   padding: 22px 0;
 }
 
 .nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav-links a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .hero {
   padding: 40px 0 60px;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-half {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .hero-card {
   background: var(--bg-soft);
   padding: 32px;
   border-radius: 22px;
   box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.72rem;
   color: var(--muted);
 }
 
 h1,
 h2,
 h3 {
   margin: 0 0 12px;
   line-height: 1.15;
 }
 
 h1 {
   font-size: clamp(2.2rem, 3vw, 3.2rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 2.4vw, 2.4rem);
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #141414;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .btn.secondary {
   background: #3c3011 !important;
   border: 1px solid var(--line);
   color: var(--line) !important;
 }
 
 .btn.dark {
   background: var(--bg-dark);
   color: #fff;
 }
 
 .section {
   padding: 60px 0;
 }
 
 .section.alt {
   background: var(--bg-soft);
 }
 
 .section.dark {
   background: var(--bg-dark);
   color: #fff;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .badge {
   display: inline-flex;
   padding: 6px 14px;
   border-radius: 999px;
   background: rgba(246, 177, 6, 0.18);
   font-size: 0.8rem;
   color: #8a5a00;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   border-radius: 18px;
   padding: 20px;
   background: #fff;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card img {
   border-radius: 14px;
   height: 140px;
   object-fit: cover;
 }
 
 .price {
   font-weight: 700;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   color: var(--muted);
 }
 
 .form-box {
   background: #fff;
   padding: 26px;
   border-radius: 18px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 select,
 input,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .inline-link {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .footer {
   margin-top: auto;
   padding: 30px 0;
   border-top: 1px solid var(--line);
   background: #fff;
 }
 
 .footer-inner {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   justify-content: space-between;
   align-items: center;
   color: var(--muted);
   font-size: 0.92rem;
 }
 
 .footer-links {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
 }
 
 .sticky-cta a {
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--bg-dark);
   color: #fff;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fff;
   border-top: 1px solid var(--line);
   box-shadow: 0 -8px 24px rgba(20, 20, 20, 0.08);
   padding: 16px 0;
   z-index: 30;
 }
 
 .cookie-inner {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 @media (max-width: 860px) {
   .nav-inner {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
