 :root {
   color-scheme: light;
   --bg: #f7f8f5;
   --ink: #1c1f1a;
   --muted: #5b6156;
   --accent: #2f7a5d;
   --accent-dark: #245c47;
   --warm: #ebe7dd;
   --cool: #e6eef0;
   --line: #d7dbd2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   padding: 24px 6vw;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   padding: 6px 10px;
   border: 1px solid var(--line);
   border-radius: 999px;
 }
 
 .hero {
   padding: 40px 6vw 60px;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .content {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .media {
   flex: 1 1 320px;
   background: var(--cool);
   border-radius: 24px;
   overflow: hidden;
   min-height: 320px;
 }
 
 .media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .section {
   padding: 60px 6vw;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.alt {
   background: var(--warm);
 }
 
 .section.bg-image {
   background-image: url("https://images.unsplash.com/photo-1671785253964-bdb43087ed99?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
 }
 
 .section.bg-image .notice,
 .section.bg-image .eyebrow {
   color: #f3f4ef;
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .card-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-image {
   background: var(--cool);
   border-radius: 14px;
   overflow: hidden;
   height: 160px;
 }
 
 .card-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent);
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   border: 1px solid var(--line);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn:hover {
   background: var(--accent-dark);
 }
 
 .btn.secondary:hover {
   background: var(--accent);
   color: #fff;
 }
 
 .link-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .link-cta:hover {
   color: var(--accent-dark);
 }
 
 .form-panel {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .footer {
   margin-top: auto;
   padding: 36px 6vw 48px;
   border-top: 1px solid var(--line);
   background: #fff;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   padding: 12px 16px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .sticky-cta:hover {
   background: var(--accent-dark);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 12px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-left: auto;
 }
 
 .notice {
   color: var(--muted);
   font-size: 0.95rem;
 }
