 :root {
   color-scheme: light;
   --ink: #1f1c19;
   --muted: #6a615a;
   --sand: #f6f1ec;
   --clay: #e8ddd3;
   --olive: #6f7a69;
   --rose: #d9a7a7;
   --deep: #2e2b28;
   --accent: #b56b5f;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #faf8f6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
   background-color: var(--clay);
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .header {
   background: #fff;
   border-bottom: 1px solid var(--clay);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 20px 0;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand strong {
   font-size: 1.3rem;
   letter-spacing: 0.02em;
 }
 
 .ad-label {
   font-size: 0.8rem;
   color: var(--muted);
 }
 
 .menu {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .menu a:hover,
 .menu a:focus {
   color: var(--accent);
 }
 
 .hero {
   background: #e8ddd3;
   background-size: cover;
   background-position: center;
   padding: 120px 0 90px;
   position: relative;
 }

 .hero-home {
   background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(31, 28, 25, 0.25);
 }
 
 .hero-content {
   position: relative;
   color: #fff;
   display: flex;
   flex-direction: column;
   gap: 24px;
   max-width: 520px;
 }
 
 .hero-content h1 {
   font-size: clamp(2.2rem, 3.5vw, 3.6rem);
   margin: 0;
 }
 
 .hero-content p {
   font-size: 1.05rem;
   margin: 0;
 }
 
 .btn,
 .btn-outline,
 .sticky-cta button,
 .cookie-banner button,
 .form-actions button {
   border: none;
   padding: 12px 22px;
   font-size: 0.95rem;
   cursor: pointer;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
 }
 
 .btn:hover,
 .btn:focus,
 .btn-outline:hover,
 .btn-outline:focus,
 .sticky-cta button:hover,
 .sticky-cta button:focus,
 .cookie-banner button:hover,
 .cookie-banner button:focus,
 .form-actions button:hover,
 .form-actions button:focus {
   transform: translateY(-1px);
   box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
 }
 
 .section {
   padding: 80px 0;
 }
 
 .section-title {
   font-size: 2rem;
   margin-bottom: 20px;
 }
 
 .asym-block {
   display: flex;
   gap: 40px;
   align-items: center;
 }
 
 .asym-block.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .asym-media {
   flex: 1;
   background: var(--clay);
   padding: 20px;
   transform: translateY(-18px);
 }
 
 .asym-media.offset-right {
   transform: translateY(22px);
 }
 
 .asym-media img {
   width: 100%;
   height: 320px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   background: #fff;
   border: 1px solid var(--clay);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   flex: 1 1 240px;
   min-width: 240px;
 }
 
 .card img {
   width: 100%;
   height: 180px;
 }
 
 .card .price {
   font-weight: 600;
   color: var(--accent);
 }
 
 .split-highlight {
   background: var(--sand);
 }

 .section-backdrop-one {
   background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .split-highlight .asym-media {
   background: var(--rose);
 }
 
 .testimonial {
   display: flex;
   gap: 30px;
   align-items: center;
   background: #fff;
   padding: 30px;
   border-left: 6px solid var(--accent);
 }
 
 .testimonial img {
   width: 220px;
   height: 240px;
 }
 
 .testimonial blockquote {
   margin: 0;
   font-size: 1.05rem;
 }
 
 .form-section {
   background: var(--deep);
   color: #fff;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 4px;
   border: 1px solid #c8c1bb;
   font-size: 0.95rem;
   width: 100%;
 }
 
 .form-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .form-message {
   font-size: 0.9rem;
   color: #f6d9d9;
   min-height: 20px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: #fff;
   border: 1px solid var(--clay);
   padding: 16px 20px;
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 20;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }
 
 .sticky-cta button {
   background: var(--olive);
   color: #fff;
 }
 
 .footer {
   background: #fff;
   padding: 40px 0 60px;
   border-top: 1px solid var(--clay);
   margin-top: auto;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 0.9rem;
   color: var(--muted);
   margin-bottom: 18px;
 }
 
 .footer-links a:hover,
 .footer-links a:focus {
   color: var(--accent);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid var(--clay);
   padding: 18px;
   max-width: 360px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   z-index: 30;
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .cookie-actions button {
   background: var(--deep);
   color: #fff;
 }
 
 .cookie-actions .reject {
   background: transparent;
   color: var(--deep);
   border: 1px solid var(--deep);
 }
 
 .hero-secondary {
   background: #e8ddd3;
   background-size: cover;
   background-position: center;
   padding: 90px 0 70px;
 }

 .hero-about {
   background-image: url("https://images.unsplash.com/photo-1456885284447-7dd4bb8720bf?w=1400&q=80");
 }

 .hero-services {
   background-image: url("https://images.unsplash.com/photo-1503342394128-c104d54dba01?w=1400&q=80");
 }
 
 .hero-secondary h1 {
   margin: 0;
   font-size: clamp(2rem, 3vw, 3rem);
 }
 
 .legal-hero {
   background: #f3ede8;
   padding: 60px 0 50px;
 }
 
 .legal-hero img {
   width: 100%;
   height: 220px;
 }
 
 .legal-content {
   display: flex;
   flex-direction: column;
   gap: 18px;
   color: var(--muted);
 }
 
 .contact-panel {
   display: flex;
   gap: 30px;
   align-items: center;
 }
 
 .contact-panel img {
   width: 320px;
   height: 260px;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   background: var(--clay);
   padding: 6px 10px;
   font-size: 0.85rem;
 }
 
 @media (max-width: 900px) {
   .asym-block,
   .asym-block.reverse,
   .testimonial,
   .contact-panel {
     flex-direction: column;
   }
 
   .asym-media,
   .asym-media.offset-right {
     transform: none;
   }
 
   .sticky-cta {
     left: 16px;
     right: 16px;
     bottom: 16px;
     justify-content: space-between;
   }
 }
