 :root {
   --ink: #1e2226;
   --muted: #5a636b;
   --accent: #2f6f52;
   --accent-2: #c89b4a;
   --paper: #f6f2ed;
   --stone: #e7e1d8;
   --dark: #121416;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 .img-cover {
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .container {
   width: min(1140px, 92%);
   margin: 0 auto;
 }
 
 .header {
   padding: 24px 0 12px;
   border-bottom: 1px solid var(--stone);
   background: #fff;
 }
 
 .header-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   font-size: 14px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav a {
   font-size: 14px;
   color: var(--muted);
 }
 
 .ad-label {
   padding: 6px 10px;
   border: 1px solid var(--accent-2);
   color: var(--dark);
   font-size: 12px;
   background: #fff8ea;
 }
 
 .hero {
   padding: 64px 0 40px;
 }
 
 .hero-grid {
   display: flex;
   gap: 28px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   gap: 24px;
 }
 
 .hero-copy h1 {
   font-size: 42px;
   line-height: 1.1;
   margin: 0;
 }
 
 .hero-copy p {
   margin: 0;
   color: var(--muted);
   font-size: 18px;
 }
 
 .hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .button {
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .hero-media {
   flex: 0.9;
   background: #dcd2c5;
   border-radius: 18px;
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
   min-height: 360px;
 }
 
 .section {
   padding: 52px 0;
 }
 
 .section.alt {
   background: var(--paper);
 }
 
 .asym-wrap {
   display: flex;
   gap: 32px;
   align-items: center;
   position: relative;
 }
 
 .asym-card {
   background: #fff;
   padding: 28px;
   border-radius: 16px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
   flex: 1;
 }
 
 .asym-image {
   flex: 0.9;
   position: relative;
   background: #d7d0c7;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .asym-image img {
   width: 100%;
   height: 360px;
 }
 
 .offset-card {
   margin-top: -40px;
 }
 
 .service-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 260px;
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid var(--stone);
   display: flex;
   flex-direction: column;
 }
 
 .service-media,
 .inline-media .media,
 .legal-hero .media {
   background: #d6d0c7;
 }
 
 .service-card img {
   width: 100%;
   height: 180px;
 }
 
 .service-card .content {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .inline-media {
   display: flex;
   gap: 24px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .inline-media img {
   width: 360px;
   height: 240px;
   border-radius: 16px;
 }
 
 .cta-band {
   background: #0e1a14;
   color: #fff;
   position: relative;
 }
 
 .cta-band::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   opacity: 0.35;
 }
 
 .cta-band .container {
   position: relative;
 }
 
 .cta-band p {
   color: #e7e7e7;
 }
 
 .form-wrap {
   display: flex;
   gap: 28px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .form-card {
   flex: 1 1 340px;
   background: #fff;
   border-radius: 16px;
   padding: 28px;
   border: 1px solid var(--stone);
 }
 
 .form-card form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-card label {
   font-size: 14px;
   color: var(--muted);
 }
 
 .form-card input,
 .form-card select,
 .form-card textarea {
   padding: 12px;
   border-radius: 8px;
   border: 1px solid #d8d8d8;
   font-size: 15px;
 }
 
 .form-note {
   font-size: 13px;
   color: var(--muted);
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   z-index: 20;
 }
 
 .sticky-cta .button {
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 }
 
 .legal-hero {
   display: flex;
   gap: 24px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .legal-hero img {
   width: 320px;
   height: 220px;
   border-radius: 16px;
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 0;
   border-top: 1px solid var(--stone);
   background: #fff;
 }
 
 .footer-grid {
   display: flex;
   gap: 24px;
   justify-content: space-between;
   flex-wrap: wrap;
 }
 
 .footer small {
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   right: 18px;
   bottom: 18px;
   background: #fff;
   border: 1px solid var(--stone);
   border-radius: 16px;
   padding: 18px;
   display: none;
   z-index: 30;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
 }
 
 .cookie-content {
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .pill-link {
   padding: 8px 14px;
   border: 1px solid var(--accent);
   border-radius: 999px;
   color: var(--accent);
   font-size: 14px;
 }
 
 @media (max-width: 900px) {
   .hero-grid,
   .asym-wrap,
   .form-wrap {
     flex-direction: column;
   }
 
   .hero-media {
     min-height: 260px;
   }
 }
