 :root {
   --bg: #f5f4ef;
   --surface: #ffffff;
   --ink: #1a1a18;
   --muted: #5b5b54;
   --accent: #2f6f52;
   --accent-dark: #1f4e3a;
   --sand: #e8e2d2;
   --clay: #d7c8b1;
   --shadow: 0 18px 45px rgba(17, 16, 14, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 240px;
   padding: 32px 24px;
   background: var(--sand);
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 14px;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .sidebar-note {
   font-size: 13px;
   color: var(--muted);
 }
 
 .main {
   flex: 1;
   padding: 40px 5vw 80px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .hero-text {
   flex: 1 1 320px;
 }
 
 .hero-text h1 {
   font-size: clamp(2.2rem, 4vw, 3.4rem);
   margin-bottom: 16px;
 }
 
 .hero-card {
   flex: 1 1 280px;
   background: var(--surface);
   padding: 24px;
   box-shadow: var(--shadow);
   transform: translateY(12px);
 }
 
 .hero-card img {
   border-radius: 16px;
   margin-bottom: 16px;
 }
 
 .section {
   margin-top: 72px;
 }
 
 .section-background {
   background: var(--sand);
   padding: 36px;
   border-radius: 24px;
 }
 
 .section-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 18px;
 }
 
 .section-header h2 {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
 }
 
 .section-header p {
   max-width: 520px;
   color: var(--muted);
 }
 
 .offset-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .offset-card {
   flex: 1 1 240px;
   background: var(--surface);
   padding: 20px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .offset-card.is-raised {
   transform: translateY(-24px);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .split > div {
   flex: 1 1 300px;
 }
 
 .image-stack {
   position: relative;
 }
 
 .image-stack img {
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .image-stack .overlay {
   position: absolute;
   bottom: -18px;
   left: 18px;
   background: var(--surface);
   padding: 14px 18px;
   border-radius: 14px;
   font-size: 14px;
   box-shadow: var(--shadow);
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   background: var(--clay);
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 14px;
 }
 
 .service-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: flex-start;
   padding: 18px;
   background: var(--surface);
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .service-item strong {
   font-size: 18px;
 }
 
 .service-price {
   margin-left: auto;
   font-weight: 700;
   color: var(--accent);
 }
 
 .story-line {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .story-card {
   background: var(--surface);
   padding: 18px 22px;
   border-left: 4px solid var(--accent);
 }
 
 .testimonial {
   background: var(--clay);
   padding: 18px 20px;
   border-radius: 18px;
 }
 
 .form-wrap {
   background: var(--surface);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #d2d0c6;
   font-size: 16px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .btn {
   background: var(--accent);
   color: white;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
 }
 
 .btn-secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 0;
   background: rgba(255, 255, 255, 0.95);
   padding: 14px 20px;
   margin-top: 40px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .footer {
   margin-top: 80px;
   border-top: 1px solid #d8d4c7;
   padding-top: 24px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px 24px;
   font-size: 14px;
 }
 
 .footer a {
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--surface);
   box-shadow: var(--shadow);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   z-index: 20;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .cookie-banner p {
   margin: 0;
   flex: 1 1 260px;
   color: var(--muted);
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .legal-wrap {
   max-width: 820px;
 }
 
 .legal-wrap h1 {
   font-size: 2.2rem;
 }
 
 .legal-wrap h2 {
   margin-top: 28px;
 }
 
 .contact-block {
   background: var(--surface);
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 @media (max-width: 900px) {
   .page {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
   }
 
   .nav-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 10px 16px;
   }
 
   .main {
     padding: 28px 6vw 72px;
   }
 
   .hero-card {
     transform: none;
   }
 
   .offset-card.is-raised {
     transform: none;
   }
 }
