 :root {
   color-scheme: light;
   --cream: #f6f1ea;
   --sand: #efe5d9;
   --clay: #d6c6b6;
   --charcoal: #2b2a27;
   --accent: #c97c5d;
   --accent-dark: #9b5138;
   --sage: #6c7c71;
   --sky: #e3eef2;
   --white: #ffffff;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--charcoal);
   background: var(--cream);
   line-height: 1.6;
 }

 a {
   color: var(--accent-dark);
   text-decoration: none;
 }

 img {
   max-width: 100%;
   display: block;
   border-radius: 18px;
 }

 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 .top-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 8vw;
   background: var(--white);
   border-bottom: 1px solid var(--clay);
 }

 .logo {
   font-weight: 700;
   letter-spacing: 0.08em;
 }

 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }

 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 56px 8vw 40px;
   background: linear-gradient(120deg, var(--sand), var(--cream));
 }

 .hero-visual {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .hero-highlight {
   font-size: 2.4rem;
   font-weight: 700;
   max-width: 620px;
 }

 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .btn {
   padding: 12px 22px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
 }

 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }

 .section {
   padding: 48px 8vw;
 }

 .section.light {
   background: var(--white);
 }

 .section.accent {
   background: var(--sky);
 }

 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .split.reverse {
   flex-direction: column-reverse;
 }

 .split .text-block {
   flex: 1;
 }

 .split .media-block {
   flex: 1;
 }

 .story-strip {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: var(--sand);
   padding: 24px;
   border-radius: 24px;
 }

 .card-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 18px;
   background: var(--white);
   border: 1px solid var(--clay);
 }

 .card img {
   border-radius: 14px;
 }

 .inline-cta {
   font-weight: 700;
 }

 .highlight {
   font-weight: 700;
   color: var(--accent-dark);
 }

 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .testimonial {
   background: var(--white);
   padding: 18px;
   border-left: 4px solid var(--accent);
   border-radius: 14px;
 }

 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .pricing-item {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: var(--white);
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--clay);
 }

 .form-wrapper {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--white);
   padding: 24px;
   border-radius: 20px;
   border: 1px solid var(--clay);
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 label {
   font-weight: 600;
   font-size: 0.95rem;
 }

 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--clay);
   font-size: 1rem;
   font-family: inherit;
 }

 .footer {
   padding: 24px 8vw 40px;
   background: var(--charcoal);
   color: var(--white);
   margin-top: auto;
 }

 .footer a {
   color: var(--white);
   opacity: 0.9;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }

 .sticky-cta {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: var(--accent-dark);
   color: var(--white);
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
   display: flex;
   align-items: center;
   gap: 10px;
   z-index: 5;
 }

 .sticky-cta a {
   color: var(--white);
   font-weight: 600;
 }

 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--white);
   padding: 16px;
   border-radius: 16px;
   border: 1px solid var(--clay);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 6;
 }

 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }

 .cookie-actions .btn.secondary {
   border-color: var(--clay);
   color: var(--charcoal);
 }

 .content-narrow {
   max-width: 760px;
 }

 .list-inline {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 18px;
 }

 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }

   .hero-visual {
     flex: 1;
   }

   .hero-content {
     flex: 1;
   }

   .split {
     flex-direction: row;
     align-items: center;
   }

   .split.reverse {
     flex-direction: row-reverse;
   }

   .card-row {
     flex-direction: row;
     flex-wrap: wrap;
   }

   .card {
     flex: 1 1 220px;
   }

   .pricing-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }

   .pricing-item {
     flex: 1 1 220px;
   }

   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
