 :root {
   --bg: #f5f2ed;
   --ink: #24322b;
   --muted: #4d5c55;
   --accent: #2f6f4e;
   --accent-dark: #1f5037;
   --sand: #e7e0d6;
   --leaf: #c9d8c9;
   --stone: #d9d2c8;
   --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent-dark);
 }
 
 header {
   padding: 24px 6vw 10px;
 }
 
 .topbar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 0.02em;
 }
 
 nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   border-left: 2px solid var(--accent);
   padding-left: 12px;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
   padding: 70px 6vw;
 }
 
 .split-section.alt {
   background: var(--sand);
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content,
 .split-media {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .split-content h1,
 .split-content h2 {
   margin-top: 0;
 }
 
 .chip {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--leaf);
   color: var(--ink);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
   margin-bottom: 16px;
 }
 
 .media-frame {
   background: var(--stone);
   border-radius: 22px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .media-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .media-tall {
   height: 420px;
 }
 
 .media-short {
   height: 320px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn-outline {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
 }
 
 .btn-outline:hover,
 .btn-outline:focus {
   color: #fff;
 }
 
 .cards-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .media-frame {
   height: 180px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .highlight-box {
   background: #fff;
   border-radius: 16px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #c8c8c8;
   font-size: 1rem;
 }
 
 .form-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .form-grid .field {
   flex: 1 1 220px;
 }
 
 .inline-cta {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 footer {
   background: #1f2a24;
   color: #d9e2dc;
   padding: 40px 6vw;
 }
 
 footer a {
   color: #d9e2dc;
 }
 
 .footer-cols {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-cols > div {
   flex: 1 1 220px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 5;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background: #153625;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 14px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 10;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .page-hero {
   padding: 60px 6vw 20px;
 }
 
 .page-hero h1 {
   margin: 0 0 10px;
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .info-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .info-row > div {
   flex: 1 1 240px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .section-note {
   background: var(--leaf);
   padding: 18px;
   border-radius: 14px;
 }
 
 .no-list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
