 :root {
   --bg: #f6f3ef;
   --ink: #1e1e1e;
   --muted: #5a5a5a;
   --accent: #1f6b5f;
   --accent-2: #cfa45a;
   --paper: #ffffff;
   --shadow: 0 18px 40px rgba(20, 26, 24, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   padding: 24px 0 10px;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .brand-mark {
   background: var(--accent);
   color: #fff;
   padding: 10px 12px;
   font-weight: 700;
   border-radius: 10px;
   letter-spacing: 1px;
 }
 
 .brand-name {
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 0.9rem;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .nav a {
   font-size: 0.95rem;
 }
 
 .ad-label {
   margin-top: 10px;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .hero {
   padding: 60px 0 40px;
 }
 
 .hero-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1 1 320px;
 }
 
 .hero-copy h1 {
   font-size: clamp(2.2rem, 4vw, 3.4rem);
   margin-bottom: 18px;
 }
 
 .hero-panel {
   flex: 1 1 380px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .media {
   background: #d9e1db;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .media.tall {
   height: 360px;
 }
 
 .media.short {
   height: 220px;
 }
 
 .offset-card {
   background: var(--paper);
   border-radius: 16px;
   padding: 24px;
   box-shadow: var(--shadow);
   transform: translateX(20px);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   padding: 60px 0;
 }
 
 .section.alt {
   background: var(--paper);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .split .col {
   flex: 1 1 320px;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--paper);
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .card.media-card {
   padding: 0;
   overflow: hidden;
 }
 
 .card.media-card .card-body {
   padding: 18px 20px 22px;
 }
 
 .pricing {
   font-weight: 700;
   color: var(--accent);
 }
 
 .quote {
   background: #e9efe9;
   border-left: 4px solid var(--accent);
   padding: 18px 22px;
   border-radius: 10px;
 }
 
 .lead-form {
   display: flex;
   flex-direction: column;
   gap: 14px;
   background: var(--paper);
   padding: 26px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .lead-form input,
 .lead-form select,
 .lead-form textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #d5d9d6;
   font-size: 0.95rem;
   background: #fff;
 }
 
 .lead-form button {
   align-self: flex-start;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   padding: 8px 16px;
   background: #dde6e2;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .site-footer {
   padding: 40px 0 50px;
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 12px;
 }
 
 .footer-links a {
   color: var(--muted);
 }
 
 .legal-note {
   margin-top: 18px;
   font-size: 0.85rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 20;
 }
 
 .sticky-cta a {
   box-shadow: var(--shadow);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--paper);
   padding: 18px 20px;
   border-radius: 14px;
   box-shadow: var(--shadow);
   max-width: 320px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .two-tone {
   background: linear-gradient(120deg, #f1ece6 60%, #dfe8e2 60%);
 }
 
 .image-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pull-up {
   margin-top: -40px;
 }
 
 .inline-cta {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 600;
 }
 
 .mt-22 {
   margin-top: 22px;
 }
 
 .mt-24 {
   margin-top: 24px;
 }
 
 .page-header {
   padding: 40px 0 20px;
 }
 
 .list-clean {
   padding-left: 18px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: var(--paper);
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 @media (max-width: 860px) {
   .offset-card {
     transform: none;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
