 :root {
   color-scheme: light;
   --bg: #f5f4f1;
   --ink: #1d1e20;
   --muted: #5a5f66;
   --brand: #6f4f3b;
   --accent: #b86f42;
   --soft: #efe8e1;
   --card: #ffffff;
   --line: #d8d2cc;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--brand);
   text-decoration: none;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 header {
   padding: 24px 6vw;
   background: #fff;
   border-bottom: 1px solid var(--line);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   background: var(--soft);
   color: var(--muted);
   padding: 6px 12px;
   font-size: 0.9rem;
 }
 
 .section {
   padding: 0 6vw;
 }
 
 .section-block {
   background: var(--card);
   border-radius: 18px;
   padding: 32px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 280px;
 }
 
 .hero-title {
   font-size: 2.4rem;
   margin: 0 0 12px;
 }
 
 .hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .cta-button {
   background: var(--brand);
   color: #fff;
   border: none;
   padding: 12px 22px;
   border-radius: 999px;
   font-size: 1rem;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .cta-outline {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
   padding: 12px 22px;
   border-radius: 999px;
   font-size: 1rem;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .note {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .story-columns {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
 }
 
 .story-columns > div {
   flex: 1 1 240px;
 }
 
 .chips {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .chip {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--soft);
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 16px;
   overflow: hidden;
   flex: 1 1 220px;
   min-width: 220px;
 }
 
 .card-body {
   padding: 18px;
 }
 
 .price-tag {
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .badge {
   background: var(--brand);
   color: #fff;
   padding: 4px 10px;
   border-radius: 999px;
   font-size: 0.8rem;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   border-left: 3px solid var(--brand);
   background: var(--soft);
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .sticky-box {
   position: sticky;
   top: 18px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 16px;
   border-radius: 14px;
 }
 
 footer {
   padding: 32px 6vw 48px;
   background: #111;
   color: #f2f2f2;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .footer-links a {
   color: #f2f2f2;
 }
 
 .legal-box {
   background: #fff;
   border-radius: 16px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .image-frame {
   background: #d9d2ca;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .section-bg {
   background: #ebe4dd;
   padding: 48px 6vw;
 }
 
 .bg-pricing {
   background-image: url("https://images.unsplash.com/photo-1498049860654-af1a5c566876?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-about {
   background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-services {
   background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-legal {
   background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   right: 16px;
   left: 16px;
   background: #fff;
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 16px;
   display: none;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   z-index: 999;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .cookie-button {
   border: none;
   padding: 10px 16px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--brand);
   color: #fff;
 }
 
 .cookie-reject {
   background: #e7e2dd;
   color: var(--ink);
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .centered {
   text-align: center;
 }
 
 .full-width {
   width: 100%;
 }
