 :root {
   --ink: #1f2429;
   --muted: #5b6470;
   --sand: #f5f1ea;
   --stone: #e7dfd3;
   --night: #0f1a23;
   --accent: #c57b3c;
   --accent-dark: #8f4d22;
   --paper: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1140px, 92%);
   margin: 0 auto;
 }
 
 header {
   padding: 24px 0 18px;
   border-bottom: 1px solid var(--stone);
   background: var(--paper);
 }
 
 .nav-bar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
   font-size: 14px;
 }
 
 .ad-label {
   padding: 6px 10px;
   border-radius: 999px;
   background: var(--sand);
   color: var(--muted);
   font-size: 12px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text,
 .split .media {
   flex: 1 1 320px;
 }
 
 .hero {
   padding: 56px 0 32px;
 }
 
 .hero .text h1 {
   font-size: clamp(2.1rem, 3.2vw, 3.1rem);
   margin-bottom: 12px;
 }
 
 .hero .text p {
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: 0;
   font-weight: 600;
   letter-spacing: 0.2px;
 }
 
 .btn.secondary {
   background: var(--ink);
 }
 
 .btn.ghost {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .image-frame {
   background: var(--stone);
   border-radius: 20px;
   overflow: hidden;
   min-height: 280px;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 section {
   padding: 52px 0;
 }
 
 .section-muted {
   background: var(--sand);
 }
 
 .section-night {
   background: var(--night);
   color: #fff;
 }
 
 .section-night .btn {
   background: #fff;
   color: var(--night);
 }
 
 .section-background {
   background-color: var(--night);
   background-image: url("https://images.unsplash.com/photo-1695221687615-a4f5f10a615d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .section-background .overlay {
   background: rgba(15, 26, 35, 0.6);
   padding: 48px;
   border-radius: 24px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 280px;
   background: #fff;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: 0 12px 30px rgba(15, 26, 35, 0.08);
 }
 
 .card .card-body {
   padding: 18px;
 }
 
 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   background: var(--stone);
 }
 
 .price-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .price-item {
   display: flex;
   flex-wrap: wrap;
   gap: 8px 16px;
   align-items: baseline;
   justify-content: space-between;
   padding-bottom: 10px;
   border-bottom: 1px solid var(--stone);
 }
 
 .price-item span {
   color: var(--muted);
 }
 
 .testimonial {
   background: #fff;
   padding: 18px;
   border-radius: 18px;
   border: 1px solid var(--stone);
 }
 
 .form-card {
   background: #fff;
   padding: 22px;
   border-radius: 18px;
   border: 1px solid var(--stone);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--stone);
   font-size: 15px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 20px;
   align-self: flex-start;
   background: var(--sand);
   padding: 18px;
   border-radius: 18px;
 }
 
 footer {
   padding: 32px 0 60px;
   border-top: 1px solid var(--stone);
   background: var(--paper);
   color: var(--muted);
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
   background: #fff;
   border: 1px solid var(--stone);
   box-shadow: 0 10px 30px rgba(15, 26, 35, 0.12);
   border-radius: 18px;
   padding: 16px;
   width: min(720px, 92%);
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cta-inline {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .small {
   font-size: 13px;
   color: var(--muted);
 }
 
 .legal-page h1 {
   font-size: clamp(2rem, 3vw, 2.6rem);
 }
