 :root {
   --ink: #1e1e1e;
   --muted: #5f5f5f;
   --cream: #f6f1eb;
   --stone: #e7e1da;
   --terracotta: #c9785b;
   --forest: #2f4a3c;
   --sand: #faf7f2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--sand);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .topbar {
   background: var(--cream);
   border-bottom: 1px solid #ded6cf;
 }
 
 .topbar-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 18px;
 }
 
 .brand {
   font-size: 22px;
   letter-spacing: 0.5px;
   font-weight: 600;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 15px;
 }
 
 .ad-label {
   font-size: 12px;
   padding: 6px 10px;
   background: var(--forest);
   color: #fff;
   border-radius: 999px;
 }
 
 .hero {
   position: relative;
   padding: 90px 0 120px;
   background: #1e1e1e;
   color: #fff;
   overflow: hidden;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
   background-size: cover;
   background-position: center;
   opacity: 0.48;
 }
 
 .hero-content {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 24px;
   max-width: 620px;
 }
 
 .hero h1 {
   font-size: 40px;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: #f2f0ec;
   font-size: 18px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: none;
   background: var(--terracotta);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
 }
 
 .section {
   padding: 70px 0;
 }
 
 .section.light {
   background: var(--cream);
 }
 
 .section.stone {
   background: var(--stone);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .image-box {
   background: #e6ded7;
   padding: 12px;
   border-radius: 18px;
 }
 
 .image-box img {
   width: 100%;
   border-radius: 12px;
 }
 
 .story {
   font-size: 18px;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-image {
   background: #efe7df;
   padding: 8px;
   border-radius: 12px;
 }
 
 .card img {
   border-radius: 12px;
   background: #efe7df;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--forest);
   color: #fff;
   font-size: 13px;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .price-row {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 16px;
   background: #fff;
   border-radius: 14px;
 }
 
 .price-row button {
   background: var(--forest);
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 18px;
   border-left: 3px solid var(--terracotta);
 }
 
 .form-wrap {
   background: #fff;
   padding: 28px;
   border-radius: 18px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #cfc7bf;
   font-size: 15px;
   font-family: inherit;
 }
 
 .form-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 10px;
   margin-top: 30px;
   background: var(--forest);
   color: #fff;
   padding: 14px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .footer {
   background: #1f1f1f;
   color: #e9e4dd;
   padding: 40px 0;
 }
 
 .footer a {
   color: #e9e4dd;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .footer-grid > div {
   flex: 1 1 220px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   max-width: 320px;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
   padding: 10px 12px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--forest);
   color: #fff;
 }
 
 .cookie-reject {
   background: #ddd5cd;
   color: var(--ink);
 }
