 :root {
   color-scheme: light;
   --ink: #1e1d1b;
   --muted: #6d625a;
   --accent: #b2522d;
   --accent-dark: #7e3219;
   --paper: #f7f1ea;
   --sand: #efe4d9;
   --mist: #e7e2dc;
   --shadow: rgba(28, 26, 23, 0.15);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 28px 6vw 10px;
 }
 
 .brand {
   font-size: 1.1rem;
   letter-spacing: 0.08rem;
   text-transform: uppercase;
 }
 
 .split-nav {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-pill {
   padding: 8px 16px;
   border: 1px solid var(--ink);
   border-radius: 999px;
   transition: all 0.2s ease;
 }
 
 .nav-pill:hover {
   background: var(--ink);
   color: var(--paper);
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 30px 6vw 80px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1 1 320px;
   padding: 28px 28px 40px;
   background: var(--sand);
   box-shadow: 0 24px 50px var(--shadow);
   position: relative;
   z-index: 2;
 }
 
 .hero-copy h1 {
   font-size: clamp(2.4rem, 3vw, 3.4rem);
   line-height: 1.1;
   margin-bottom: 18px;
 }
 
 .hero-image {
   flex: 1 1 280px;
   min-height: 360px;
   background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 24px 0 24px 24px;
   position: relative;
   overflow: hidden;
 }
 
 .hero-image::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, rgba(30, 29, 27, 0.45), rgba(30, 29, 27, 0));
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 22px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   transition: all 0.2s ease;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-primary:hover {
   background: var(--accent-dark);
 }
 
 .btn-outline {
   border-color: var(--ink);
 }
 
 .btn-outline:hover {
   background: var(--ink);
   color: var(--paper);
 }
 
 .section {
   padding: 70px 6vw;
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .section-title {
   font-size: 1.8rem;
   margin: 0;
 }
 
 .offset-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: flex-start;
 }
 
 .offset-card {
   flex: 1 1 260px;
   padding: 26px;
   background: #fff;
   box-shadow: 0 20px 40px var(--shadow);
   border-radius: 20px;
   position: relative;
 }
 
 .offset-card.is-shifted {
   transform: translateY(24px);
 }
 
 .inline-link {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .texture-section {
   background: var(--mist);
   position: relative;
 }
 
 .texture-section::before {
   content: "";
   position: absolute;
   top: -30px;
   right: 8vw;
   width: 180px;
   height: 180px;
   background: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=600&q=80");
   background-size: cover;
   border-radius: 20px;
   box-shadow: 0 20px 40px var(--shadow);
 }
 
 .services-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   padding: 20px 24px;
   background: #fff;
   border-radius: 18px;
   box-shadow: 0 14px 30px var(--shadow);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .split-band {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   align-items: center;
 }
 
 .split-band .media {
   flex: 1 1 260px;
 }
 
 .split-band .media img {
   border-radius: 28px;
 }
 
 .split-band .content {
   flex: 1 1 280px;
 }
 
 .testimonial-strip {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .testimonial {
   flex: 1 1 220px;
   padding: 20px;
   background: #fff;
   border-left: 5px solid var(--accent);
   box-shadow: 0 14px 24px var(--shadow);
 }
 
 .form-shell {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   padding: 28px;
   border-radius: 20px;
   box-shadow: 0 22px 40px var(--shadow);
 }
 
 .form-shell label {
   font-weight: 600;
 }
 
 .form-shell input,
 .form-shell select,
 .form-shell textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #c9c1b8;
   font-family: inherit;
 }
 
 .form-shell textarea {
   min-height: 120px;
 }
 
 .footer {
   padding: 50px 6vw 70px;
   background: #1f1c1a;
   color: #f6f1ec;
 }
 
 .footer-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer a {
   color: #f6f1ec;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 16px 30px var(--shadow);
   z-index: 50;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   max-width: 340px;
   padding: 18px;
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 18px 34px var(--shadow);
   z-index: 60;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .page-hero {
   padding: 40px 6vw 10px;
 }
 
 .page-hero h1 {
   font-size: clamp(2rem, 3vw, 3rem);
 }
 
 .page-body {
   padding: 30px 6vw 80px;
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .highlight-box {
   background: var(--sand);
   padding: 24px;
   border-radius: 18px;
   box-shadow: 0 18px 30px var(--shadow);
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   padding: 24px;
   background: #fff;
   border-radius: 18px;
   box-shadow: 0 18px 30px var(--shadow);
 }
 
 @media (max-width: 720px) {
   .top-bar {
     flex-direction: column;
     align-items: flex-start;
     gap: 18px;
   }
 
   .sticky-cta {
     left: 20px;
     right: auto;
   }
 }
