 :root {
   --bg: #f6f3ef;
   --ink: #1a1a1a;
   --muted: #5a5a5a;
   --accent: #1f5b55;
   --accent-2: #d8b675;
   --paper: #ffffff;
   --soft: #efe9df;
   --shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .layout {
   display: flex;
   min-height: 100vh;
 }

 .sidebar {
   width: 280px;
   padding: 32px 24px;
   background: var(--paper);
   display: flex;
   flex-direction: column;
   gap: 24px;
   border-right: 1px solid rgba(0, 0, 0, 0.08);
 }

 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .brand strong {
   font-size: 1.4rem;
   letter-spacing: 0.02em;
 }

 .brand span {
   color: var(--muted);
   font-size: 0.9rem;
 }

 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-weight: 600;
 }

 .nav-links a {
   padding: 8px 12px;
   border-radius: 18px;
   background: var(--soft);
   display: inline-flex;
   align-items: center;
   justify-content: space-between;
 }

 .sidebar-cta {
   margin-top: auto;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .sticky-cta {
   position: sticky;
   top: 24px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 16px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }

 .content {
   flex: 1;
   padding: 32px 42px 64px;
   display: flex;
   flex-direction: column;
   gap: 32px;
 }

 .section {
   background: var(--paper);
   border-radius: 28px;
   padding: 28px 32px;
   box-shadow: var(--shadow);
 }

 .section--hero {
   background: linear-gradient(120deg, rgba(31, 91, 85, 0.9), rgba(15, 15, 15, 0.4)),
     url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .section--hero h1 {
   font-size: 2.4rem;
   margin: 0;
 }

 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   transition: transform 0.2s ease;
 }

 .btn:active {
   transform: scale(0.98);
 }

 .btn-primary {
   background: var(--accent-2);
   color: #201b12;
 }

 .btn-outline {
   border-color: #fff;
   color: #fff;
 }

 .section--split {
   display: flex;
   gap: 24px;
   align-items: center;
 }

 .section--split.reverse {
   flex-direction: row-reverse;
 }

 .split-text {
   flex: 1;
 }

 .split-media {
   flex: 1;
   border-radius: 22px;
   overflow: hidden;
 }

 .section--cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .card-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }

 .card {
   flex: 1;
   min-width: 220px;
   background: var(--soft);
   padding: 18px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .card img {
   border-radius: 14px;
 }

 .section--quote {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: #1d1f1e;
   color: #fff;
 }

 .quote-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .quote {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }

 .section--timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: linear-gradient(135deg, #fdf8f1, #f2ede4);
 }

 .timeline-step {
   display: flex;
   gap: 16px;
   align-items: center;
 }

 .timeline-step span {
   font-weight: 700;
   color: var(--accent);
   min-width: 42px;
 }

 .section--form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 label {
   font-size: 0.9rem;
   color: var(--muted);
 }

 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 14px;
   border: 1px solid rgba(0, 0, 0, 0.12);
   font-size: 1rem;
   background: #fff;
 }

 textarea {
   min-height: 110px;
   resize: vertical;
 }

 .form-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }

 .form-row > div {
   flex: 1;
   min-width: 220px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .service-price {
   font-weight: 700;
   color: var(--accent);
 }

 .section--banner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   background: var(--accent);
   color: #fff;
 }

 .footer {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 0.9rem;
   color: var(--muted);
   padding-bottom: 24px;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: #202020;
   color: #fff;
   padding: 16px;
   border-radius: 18px;
   width: min(340px, 90vw);
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 10px;
   z-index: 999;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
 }

 .cookie-actions button {
   flex: 1;
   border: none;
   border-radius: 12px;
   padding: 10px;
   font-weight: 600;
 }

 .cookie-accept {
   background: var(--accent-2);
 }

 .cookie-reject {
   background: #fff;
 }

 @media (max-width: 960px) {
   .layout {
     flex-direction: column;
   }

   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     gap: 16px;
   }

   .sidebar-cta {
     width: 100%;
     flex-direction: row;
     justify-content: flex-start;
   }

   .content {
     padding: 24px;
   }

   .section--split,
   .section--split.reverse {
     flex-direction: column;
   }
 }
