 :root {
   color-scheme: light;
   --bg: #f6f4f1;
   --ink: #1d1c1a;
   --muted: #5d5a55;
   --accent: #5a3d2b;
   --accent-2: #2d4a4f;
   --card: #ffffff;
   --sand: #ebe5de;
   --gold: #b1834c;
   --border: #d8d2c9;
   --shadow: 0 18px 40px rgba(20, 19, 17, 0.12);
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   width: min(1160px, 92vw);
   margin: 0 auto;
 }
 
 header {
   padding: 28px 0 16px;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 nav ul {
   list-style: none;
   display: flex;
   gap: 18px;
   padding: 0;
   margin: 0;
   flex-wrap: wrap;
 }
 
 nav a {
   font-size: 0.92rem;
   color: var(--muted);
 }
 
 .hero {
   padding: 32px 0 56px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .split-media {
   flex: 1;
 }
 
 .split-content {
   flex: 1;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.72rem;
   color: var(--muted);
 }
 
 h1 {
   font-size: clamp(2.2rem, 3.2vw, 3.5rem);
   margin: 10px 0 12px;
 }
 
 h2 {
   font-size: clamp(1.7rem, 2.3vw, 2.4rem);
   margin: 0 0 12px;
 }
 
 h3 {
   margin: 0 0 8px;
   font-size: 1.2rem;
 }
 
 p {
   color: var(--muted);
   margin: 0 0 16px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--accent);
   color: #fff;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
 }
 
 .btn.light {
   background: var(--accent-2);
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.tint {
   background: var(--sand);
 }
 
 .section.dark {
   background: var(--ink);
   color: #fff;
 }
 
 .section.dark p {
   color: rgba(255, 255, 255, 0.72);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 14px;
   border-radius: 999px;
   background: #fff;
   border: 1px solid var(--border);
   font-size: 0.85rem;
 }
 
 .cards-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--card);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   border: 1px solid var(--border);
 }
 
 .card img {
   border-radius: 12px;
   margin-bottom: 12px;
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 16px;
   background: var(--card);
   border: 1px solid var(--border);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .quote {
   border-left: 3px solid var(--gold);
   padding-left: 14px;
   font-style: italic;
 }
 
 .form-wrap {
   background: var(--card);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--border);
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--border);
   font: inherit;
 }
 
 .inline-link {
   color: var(--accent-2);
   text-decoration: underline;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
   background: var(--gold);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
 }
 
 .footer {
   padding: 40px 0;
   border-top: 1px solid var(--border);
   margin-top: 40px;
 }
 
 .footer-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   right: 18px;
   bottom: 18px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 25;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .page-hero {
   padding: 40px 0 30px;
 }
 
 .detail-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .contact-box {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--border);
   background: var(--card);
 }
 
 @media (min-width: 860px) {
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards-row {
     flex-direction: row;
   }
 
   .services {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-item {
     flex: 1 1 280px;
   }
 
   .detail-grid {
     flex-direction: row;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
