 :root {
   --ink: #1e2a24;
   --muted: #4c5c55;
   --paper: #f7f4ef;
   --accent: #2d6a4f;
   --accent-soft: #d8efe2;
   --sun: #f0d58a;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   width: min(1200px, 92vw);
   margin: 0 auto;
   padding: 32px 0 72px;
 }
 
 .topbar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 20px 4vw;
   background: #fff;
   border-bottom: 1px solid #e3e0da;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand strong {
   font-size: 20px;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 15px;
 }
 
 .ad-label {
   font-size: 13px;
   color: var(--muted);
   padding: 6px 10px;
   border: 1px solid #d8d3c9;
   border-radius: 999px;
   background: #faf7f2;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   gap: 20px;
 }
 
 .hero-text h1 {
   font-size: clamp(32px, 4vw, 48px);
   margin: 0;
 }
 
 .hero-text p {
   color: var(--muted);
   font-size: 18px;
 }
 
 .hero-image {
   flex: 1 1 340px;
   border-radius: 22px;
   overflow: hidden;
   background: #dfe9e2;
   min-height: 320px;
 }
 
 .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .magazine-row {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   margin-top: 40px;
 }
 
 .magazine-card {
   flex: 1 1 260px;
   background: #fff;
   padding: 22px;
   border-radius: 18px;
   box-shadow: 0 12px 26px rgba(30, 42, 36, 0.08);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card-image {
   border-radius: 14px;
   overflow: hidden;
   background: #dde8e1;
   height: 170px;
 }
 
 .bg-forest {
   background: #d8e6df;
 }
 
 .bg-lake {
   background: #dbe6df;
 }
 
 .bg-mist {
   background: #d5e2db;
 }
 
 .bg-soft {
   background: #e1ede6;
 }
 
 .card-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .section {
   margin-top: 54px;
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: stretch;
 }
 
 .section.tight {
   gap: 16px;
 }
 
 .section-slim {
   flex: 1 1 260px;
 }
 
 .section-wide {
   flex: 2 1 420px;
 }
 
 .feature-panel {
   background: #fff;
   border-radius: 20px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   border: 1px solid #e6e1d8;
 }
 
 .feature-panel h3 {
   margin: 0;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   text-decoration: underline;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: var(--accent-soft);
   color: var(--accent);
 }
 
 .button.ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent);
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 10px;
   padding-bottom: 12px;
   border-bottom: 1px solid #e2ddd4;
 }
 
 .image-strip {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .image-strip .card-image {
   flex: 1 1 200px;
   height: 140px;
 }
 
 .form-panel {
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   border: 1px solid #e3ddd3;
 }
 
 .form-panel form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #d4cec2;
   font-size: 15px;
 }
 
 .two-col {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .two-col > div {
   flex: 1 1 200px;
 }
 
 .striped {
   background: #eef3ee;
   border-radius: 16px;
   padding: 22px;
 }
 
 .mt-14 {
   margin-top: 14px;
 }
 
 .footer {
   margin-top: 64px;
   padding: 30px 4vw 40px;
   background: #1f2b25;
   color: #f9f7f1;
 }
 
 .footer a {
   color: #f9f7f1;
   text-decoration: underline;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-grid > div {
   flex: 1 1 220px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   z-index: 20;
   display: flex;
   gap: 10px;
   align-items: center;
   background: #ffffff;
   padding: 12px 16px;
   border-radius: 999px;
   box-shadow: 0 14px 30px rgba(30, 42, 36, 0.18);
   border: 1px solid #e1ddd4;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #ffffff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 12px 28px rgba(30, 42, 36, 0.18);
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .legal-block {
   background: #fff;
   border-radius: 16px;
   padding: 24px;
   border: 1px solid #e3ddd3;
 }
 
 .note {
   font-size: 14px;
   color: var(--muted);
 }
 
 .testimonial {
   padding: 16px;
   background: #f6faf7;
   border-left: 4px solid var(--accent);
 }
 
 .section-background {
   position: relative;
   background-color: #2d3b33;
   background-image: url("https://images.unsplash.com/photo-1476041800959-2f6bb412c8ce?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
   border-radius: 20px;
   padding: 32px;
   overflow: hidden;
 }
 
 .section-background::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 30, 26, 0.55);
 }
 
 .section-background > * {
   position: relative;
 }
