 :root {
   color-scheme: light;
   --ink: #1d1b1a;
   --muted: #5a5855;
   --sand: #f5f0ea;
   --mist: #eef2f4;
   --clay: #e2d7cc;
   --accent: #2e5b5a;
   --accent-soft: #d9eceb;
   --sun: #f4c96c;
   --radius: 22px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .top-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 6vw 12px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 1px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--ink);
 }
 
 .hero {
   padding: 24px 6vw 48px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .panel {
   background: var(--sand);
   border-radius: var(--radius);
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .panel.light {
   background: #fff;
   border: 1px solid #efe7dd;
 }
 
 .panel.dark {
   background: var(--accent);
   color: #fff;
 }
 
 .panel.dark a {
   color: #fff;
 }
 
 .section {
   padding: 36px 6vw;
 }
 
 .section.mist {
   background: var(--mist);
 }
 
 .section.clay {
   background: var(--clay);
 }
 
 .section.accent {
   background: var(--accent-soft);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.72rem;
   color: var(--muted);
 }
 
 h1,
 h2,
 h3 {
   margin: 0;
   font-weight: 600;
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.2rem, 3vw, 3.4rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 2.6vw, 2.4rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 .lead {
   font-size: 1.08rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--ink);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.primary {
   background: var(--ink);
   color: #fff;
 }
 
 .btn.soft {
   background: var(--accent-soft);
   border-color: transparent;
 }
 
 .btn:hover {
   transform: translateY(-1px);
 }
 
 .inline-link {
   text-decoration: underline;
   font-weight: 600;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
 }
 
 .card img {
   border-radius: 16px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 0;
   list-style: none;
   margin: 0;
 }
 
 .list li::before {
   content: "•";
   margin-right: 10px;
   color: var(--accent);
 }
 
 .list li {
   display: flex;
   align-items: flex-start;
 }
 
 .form-shell {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.9rem;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   font: inherit;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d9d4cd;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   padding: 32px 6vw;
   background: #141312;
   color: #f6f2ee;
   margin-top: auto;
 }
 
 .footer a {
   color: #f6f2ee;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .small {
   font-size: 0.86rem;
   color: #cfc7bd;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
   background: var(--sun);
   color: #1a1a1a;
   border: none;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
   font-weight: 700;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .map {
   background: #dfe8ea;
   border-radius: 18px;
   height: 220px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   color: #466064;
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
