 :root {
   color-scheme: light;
   --ink: #1c1b19;
   --muted: #5e5a54;
   --accent: #d8673b;
   --accent-dark: #a34b2c;
   --leaf: #5b7f5a;
   --cream: #f7f1ea;
   --mist: #f0ebe6;
   --sun: #ffd6a8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #fffaf6;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 20px 10px;
 }
 
 .nav-split {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
   color: var(--ink);
 }
 
 .hero {
   padding: 26px 20px 40px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-card {
   background: var(--cream);
   padding: 22px;
   border-radius: 24px;
   box-shadow: 0 20px 40px rgba(22, 18, 12, 0.08);
 }
 
 .hero-title {
   font-size: 32px;
   margin: 0 0 10px;
 }
 
 .hero-subtitle {
   color: var(--muted);
   margin: 0 0 20px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   font-size: 14px;
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
 }
 
 .btn:hover {
   transform: translateY(-2px);
 }
 
 .hero-image {
   border-radius: 26px;
   overflow: hidden;
   position: relative;
 }
 
 .hero-image img {
   height: 100%;
   object-fit: cover;
 }
 
 .section {
   padding: 40px 20px;
 }
 
 .section-accent {
   background: var(--mist);
 }
 
 .section-warm {
   background: var(--sun);
 }
 
 .section-background {
   background-image: linear-gradient(120deg, rgba(247, 241, 234, 0.92), rgba(247, 241, 234, 0.7)),
     url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?q=80&w=1400&auto=format&fit=crop");
   background-size: cover;
   background-position: center;
 }
 
 .section-offset {
   position: relative;
 }
 
 .section-offset::before {
   content: "";
   position: absolute;
   inset: 12px 16px auto auto;
   width: 120px;
   height: 120px;
   border-radius: 30px;
   background: rgba(216, 103, 59, 0.12);
   z-index: 0;
 }
 
 .section-inner {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 20px;
   z-index: 1;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 12px;
   letter-spacing: 1px;
   color: var(--accent-dark);
   margin: 0 0 8px;
 }
 
 .section-title {
   font-size: 26px;
   margin: 0;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   border-radius: 20px;
   padding: 18px;
   box-shadow: 0 18px 32px rgba(24, 20, 16, 0.08);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card img {
   border-radius: 16px;
   height: 160px;
   object-fit: cover;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .tagline {
   font-style: italic;
   color: var(--muted);
 }
 
 .columns {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .quote {
   padding: 18px;
   border-left: 4px solid var(--accent);
   background: #fff7f0;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .form-card {
   background: #fff;
   border-radius: 24px;
   padding: 22px;
   box-shadow: 0 22px 36px rgba(20, 15, 10, 0.1);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d7cdc4;
   font-size: 14px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   padding: 40px 20px;
   background: #1e1b18;
   color: #fdf7ef;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
   color: #d6cdc4;
 }
 
 .sticky-cta {
   position: fixed;
   right: 16px;
   bottom: 16px;
   background: var(--leaf);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 14px;
   font-weight: 600;
   box-shadow: 0 16px 32px rgba(38, 55, 38, 0.3);
   z-index: 20;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 20px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 20px 40px rgba(22, 18, 12, 0.18);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-actions button {
   border: none;
   border-radius: 999px;
   padding: 10px 16px;
   font-size: 13px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-reject {
   background: #efe6de;
   color: var(--ink);
 }
 
 .list-clean {
   margin: 0;
   padding: 0;
   list-style: none;
 }
 
 .contact-panel {
   background: var(--cream);
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .hero-image-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, rgba(28, 27, 25, 0.6), transparent);
 }
 
 @media (min-width: 860px) {
   header {
     padding: 32px 60px 10px;
   }
 
   .nav-split {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero {
     padding: 40px 60px 70px;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card,
   .hero-image {
     flex: 1;
   }
 
   .hero-title {
     font-size: 42px;
   }
 
   .section {
     padding: 60px 60px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .columns {
     flex-direction: row;
   }
 
   .card-list {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .section-title {
     font-size: 32px;
   }
 
   .cookie-banner {
     left: auto;
     right: 24px;
     max-width: 360px;
   }
 }
