 :root {
   color-scheme: light;
   --sand: #f6f1eb;
   --clay: #d6c3b2;
   --ink: #2f2722;
   --rust: #8f4b2e;
   --olive: #5f6d4c;
   --paper: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Trebuchet MS", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--sand);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow: hidden;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 1rem;
   padding: 1.5rem 6vw 1rem;
   background: var(--paper);
   border-bottom: 1px solid rgba(47, 39, 34, 0.08);
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.05em;
   text-transform: uppercase;
 }
 
 .nav-meta {
   flex: 1;
   display: flex;
   flex-wrap: wrap;
   gap: 1rem 2rem;
   align-items: center;
   justify-content: flex-end;
   font-size: 0.95rem;
 }
 
 .nav-meta a {
   padding-bottom: 0.25rem;
   border-bottom: 2px solid transparent;
 }
 
 .nav-meta a:hover {
   border-color: var(--rust);
 }
 
 .hero {
   padding: 3.5rem 6vw 2rem;
   background: linear-gradient(120deg, #f9f5f2 0%, #efe3da 60%, #e7d5c7 100%);
   position: relative;
 }
 
 .hero-wrap {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--paper);
   padding: 1.8rem;
   border-radius: 1.5rem;
   box-shadow: 0 20px 40px rgba(47, 39, 34, 0.1);
   position: relative;
   z-index: 2;
 }
 
 .hero-title {
   font-size: 2.1rem;
   margin: 0 0 0.8rem;
 }
 
 .hero-subtitle {
   margin: 0 0 1.2rem;
   font-size: 1.05rem;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.9rem;
 }
 
 .button {
   background: var(--rust);
   color: var(--paper);
   padding: 0.8rem 1.6rem;
   border-radius: 999px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   border: none;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--rust);
   border: 2px solid var(--rust);
 }
 
 .hero-visual {
   position: relative;
   margin-left: auto;
   width: min(100%, 420px);
 }
 
 .hero-visual img {
   border-radius: 2rem;
   border: 6px solid var(--paper);
 }
 
 .hero-tag {
   position: absolute;
   bottom: -1.2rem;
   left: -1.2rem;
   background: var(--olive);
   color: var(--paper);
   padding: 0.8rem 1.1rem;
   border-radius: 1rem;
   font-size: 0.9rem;
 }
 
 .section {
   padding: 3rem 6vw;
 }
 
 .section.offset {
   background: var(--paper);
   position: relative;
   margin: 0 4vw;
   border-radius: 2rem;
   box-shadow: 0 18px 40px rgba(47, 39, 34, 0.08);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-bottom: 2rem;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.75rem;
   color: var(--olive);
 }
 
 .section-grid {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .asym-split {
   display: flex;
   flex-direction: column;
   gap: 1.8rem;
 }
 
 .asym-card {
   background: var(--clay);
   padding: 1.6rem;
   border-radius: 1.5rem;
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1.2rem;
   background: var(--paper);
   border-radius: 1.2rem;
   border: 1px solid rgba(47, 39, 34, 0.08);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--rust);
 }
 
 .gallery {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .gallery figure {
   flex: 1 1 140px;
   background: var(--paper);
   padding: 0.8rem;
   border-radius: 1rem;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .testimonial {
   background: var(--paper);
   border-left: 4px solid var(--rust);
   padding: 1rem 1.2rem;
   border-radius: 0.8rem;
 }
 
 .form-shell {
   background: var(--paper);
   padding: 2rem;
   border-radius: 2rem;
   box-shadow: 0 20px 40px rgba(47, 39, 34, 0.1);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 0.7rem 0.9rem;
   border-radius: 0.8rem;
   border: 1px solid rgba(47, 39, 34, 0.2);
   font-size: 1rem;
   background: #fff;
 }
 
 .sticky-cta {
   position: sticky;
   top: 1.2rem;
   align-self: flex-start;
   background: var(--ink);
   color: var(--paper);
   padding: 1rem 1.2rem;
   border-radius: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .footer {
   padding: 2.5rem 6vw;
   background: #211b18;
   color: #f8f4f1;
 }
 
 .footer-columns {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer a {
   color: inherit;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   right: 1rem;
   left: 1rem;
   background: var(--paper);
   border-radius: 1.2rem;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
   padding: 1rem 1.2rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 10;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.8rem;
   flex-wrap: wrap;
 }
 
 .page-hero {
   padding: 3rem 6vw 2rem;
   background: var(--paper);
 }
 
 .page-hero .hero-title {
   font-size: 2rem;
 }
 
 .info-cards {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .info-card {
   background: var(--paper);
   padding: 1.4rem;
   border-radius: 1.2rem;
 }
 
 @media (min-width: 900px) {
   .hero-wrap {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     max-width: 520px;
   }
 
   .section-grid {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .asym-split {
     flex-direction: row;
   }
 
   .services {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-item {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1 1 0;
   }
 
   .form-layout {
     display: flex;
     gap: 2rem;
   }
 
   .footer-columns {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-banner {
     left: auto;
     max-width: 420px;
   }
 }
