 :root {
   --bg: #f6f5f2;
   --ink: #1f2a24;
   --muted: #5c6a61;
   --accent: #2f7a57;
   --accent-2: #1b4d3a;
   --soft: #e4ece6;
   --paper: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   max-width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 header {
   padding: 24px 0 12px;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px 18px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   background: var(--soft);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   position: relative;
   background-color: #1b3a2f;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #f7f7f2;
   min-height: 70vh;
   display: flex;
   align-items: flex-end;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, rgba(20, 45, 35, 0.85), rgba(20, 45, 35, 0.2));
 }
 
 .hero-inner {
   position: relative;
   padding: 60px 0 80px;
   width: 100%;
 }
 
 .hero-content {
   width: min(560px, 92%);
 }
 
 .hero h1 {
   font-size: clamp(2.3rem, 4vw, 3.4rem);
   line-height: 1.1;
   margin: 0 0 18px;
 }
 
 .hero p {
   font-size: 1.1rem;
   margin: 0 0 26px;
   color: #e5efe8;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #f7f7f2;
   font-weight: 600;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 70px 0;
 }
 
 .section-tight {
   padding: 48px 0;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > * {
   flex: 1 1 280px;
 }
 
 .offset-card {
   background: var(--paper);
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
   margin-top: -40px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.78rem;
   letter-spacing: 0.18em;
   color: var(--accent);
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--paper);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
 }
 
 .img-frame {
   background: #dfe7e1;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .img-frame img {
   width: 100%;
   height: 180px;
 }
 
 .services-wrap {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .service-item {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
   background: var(--paper);
   padding: 24px;
   border-radius: 20px;
 }
 
 .service-item .price {
   font-weight: 700;
   color: var(--accent-2);
 }
 
 .panel {
   background: var(--soft);
   padding: 28px;
   border-radius: 24px;
 }
 
 .form-panel {
   background: var(--paper);
   padding: 32px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border: 1px solid #cfd8d1;
   border-radius: 12px;
   font: inherit;
   background: #fbfbf9;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
   background: var(--accent-2);
   color: #f7f7f2;
   padding: 12px 18px;
   border-radius: 999px;
 }
 
 footer {
   background: #e8efe9;
   padding: 40px 0 60px;
   font-size: 0.92rem;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 16px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--paper);
   border-radius: 18px;
   padding: 18px 22px;
   box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
   display: flex;
   gap: 14px;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-actions button {
   padding: 10px 16px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: #f7f7f2;
 }
 
 .cookie-reject {
   background: #e6ece7;
   color: var(--ink);
 }
 
 .hidden {
   display: none;
 }
 
 .note {
   font-size: 0.95rem;
   color: var(--muted);
 }
