 :root {
   --ink: #1a1c1f;
   --muted: #5a636e;
   --sand: #f5f1ea;
   --stone: #e7e1d8;
   --olive: #4a5b4c;
   --gold: #c9a66b;
   --charcoal: #121417;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--white);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .text-link {
   text-decoration: underline;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 7vw;
   background: var(--white);
 }
 
 .brand {
   font-size: 1.2rem;
   font-weight: 600;
   letter-spacing: 0.04em;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   border: 1px solid var(--stone);
   padding: 6px 10px;
   border-radius: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 24px;
   border: 1px solid transparent;
   cursor: pointer;
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn-primary {
   background: var(--charcoal);
   color: var(--white);
 }
 
 .btn-ghost {
   background: transparent;
   border-color: var(--charcoal);
   color: var(--charcoal);
 }
 
 .btn:hover,
 .nav a:hover,
 .text-link:hover {
   transform: translateY(-1px);
 }
 
 .hero {
   padding: 30px 7vw 60px;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1;
 }
 
 .section {
   padding: 70px 7vw;
 }
 
 .section-light {
   background: var(--sand);
 }
 
 .section-dark {
   background: var(--charcoal);
   color: var(--white);
 }
 
 .section-stone {
   background: var(--stone);
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 16px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--white);
   border-radius: 18px;
   padding: 18px;
   border: 1px solid var(--stone);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.dark {
   background: #1f2227;
   border-color: #2e3137;
   color: var(--white);
 }
 
 .card img {
   border-radius: 14px;
   width: 100%;
   height: 160px;
   background-color: var(--stone);
 }
 
 .price {
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .form-wrap {
   background: var(--white);
   border-radius: 20px;
   padding: 26px;
   border: 1px solid var(--stone);
 }
 
 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   display: block;
   margin-bottom: 6px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--stone);
   font-size: 1rem;
 }
 
 .inline-pill {
   display: inline-flex;
   gap: 10px;
   align-items: center;
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--stone);
   font-size: 0.9rem;
 }
 
 .cta-row {
   margin-top: 20px;
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .cta-note {
   margin-top: 12px;
 }
 
 .list-clean {
   padding-left: 18px;
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
   background-size: cover;
   background-position: center;
  background-color: #2b2f36;
   border-radius: 28px;
   min-height: 320px;
 }
 
 .bg-city {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
  background-color: #3c3f44;
 }
 
 .bg-keys {
   background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
   background-size: cover;
   background-position: center;
  background-color: #2f3136;
 }
 
 .bg-section {
   border-radius: 26px;
   padding: 40px;
   color: var(--white);
   background-color: #2a2f36;
 }
 
 .footer {
   padding: 40px 7vw;
   background: var(--charcoal);
   color: var(--white);
   margin-top: auto;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 16px;
 }
 
 .disclaimer {
   font-size: 0.9rem;
   color: #c8ccd3;
   margin-top: 18px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: var(--white);
   border: 1px solid var(--stone);
   border-radius: 16px;
   padding: 16px;
   max-width: 360px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
   display: none;
   gap: 12px;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .inline-image {
   border-radius: 20px;
   width: 100%;
   height: 280px;
   background-color: var(--stone);
 }
 
 .split img.inline-small {
   width: 100%;
   height: 220px;
   border-radius: 18px;
   background-color: var(--stone);
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   border: 1px solid var(--stone);
   border-radius: 20px;
   padding: 6px 12px;
   font-size: 0.85rem;
 }
 
 @media (max-width: 900px) {
   .split {
     flex-direction: column;
   }
 
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 
   .nav {
     gap: 12px;
     flex-direction: column;
     align-items: flex-start;
   }
 }
