 :root {
   color: #1c1c1c;
   background: #f6f3ef;
   font-family: "Helvetica Neue", Arial, sans-serif;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   background: #f6f3ef;
   color: #1c1c1c;
   line-height: 1.6;
 }
 
 a {
   color: #1c1c1c;
   text-decoration: underline;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   padding: 20px 8%;
   background: #efe9e1;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand strong {
   font-size: 20px;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   background: #d6c7b7;
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   display: flex;
   flex-direction: row;
   align-items: stretch;
   justify-content: space-between;
   padding: 40px 8%;
   gap: 24px;
 }
 
 .hero-copy {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }
 
 .hero-copy h1 {
   font-size: 40px;
   margin: 0;
 }
 
 .hero-cta {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .btn {
   background: #1c1c1c;
   color: #f6f3ef;
   border: none;
   padding: 12px 18px;
   cursor: pointer;
   font-size: 14px;
 }
 
 .btn-secondary {
   background: #d6c7b7;
   color: #1c1c1c;
 }
 
 .hero-media {
   flex: 1;
   min-height: 360px;
   background: #d4c8bf;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .section {
   padding: 48px 8%;
 }
 
 .section-muted {
   background: #efe9e1;
 }
 
 .section-split {
   display: flex;
   gap: 24px;
   align-items: center;
 }
 
 .section-split.reverse {
   flex-direction: row-reverse;
 }
 
 .section-copy {
   flex: 1;
 }
 
 .section-media {
   flex: 1;
   min-height: 260px;
   background: #d9cfc5;
 }
 
 .section-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   display: flex;
   flex-direction: row;
   gap: 18px;
   background: #fffaf4;
   padding: 18px;
   align-items: center;
 }
 
 .card-media {
   width: 140px;
   height: 140px;
   background: #d4c8bf;
   flex-shrink: 0;
 }
 
 .card-media img {
   width: 140px;
   height: 140px;
   object-fit: cover;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pricing-item {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 12px;
   border-bottom: 1px solid #d6c7b7;
   padding-bottom: 12px;
 }
 
 .pricing-item span {
   font-weight: 600;
 }
 
 .form-wrap {
   background: #fffaf4;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 input,
 select,
 textarea {
   padding: 10px;
   font-size: 14px;
   border: 1px solid #c5b8a9;
   background: #ffffff;
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 8%;
   background: #efe9e1;
   font-size: 13px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 16px;
   bottom: 16px;
   background: #1c1c1c;
   color: #f6f3ef;
   padding: 12px 16px;
   border: none;
   cursor: pointer;
   font-size: 13px;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fffaf4;
   border: 1px solid #d6c7b7;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   max-width: 320px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .legal-hero {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 36px 8% 20px;
 }
 
 .legal-body {
   padding: 24px 8% 48px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .image-inline {
   background: #d4c8bf;
   margin: 16px 0;
 }
 
 .image-inline img {
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 @media (max-width: 900px) {
   .hero,
   .section-split,
   .section-split.reverse {
     flex-direction: column;
   }
 
   .card {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     width: calc(100% - 24px);
     text-align: center;
   }
 }
