 :root {
   color-scheme: light;
   --bg: #f6f3ef;
   --ink: #1d1b16;
   --muted: #6c645b;
   --accent: #2a6f6b;
   --accent-2: #bf6b2f;
   --paper: #ffffff;
   --sand: #efe6dc;
   --stone: #e6e1da;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 a:hover {
   text-decoration: underline;
 }
 
 header {
   padding: 28px 6vw 12px;
 }
 
 .nav-wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
   padding: 8px 14px;
   border: 1px solid var(--stone);
   border-radius: 999px;
   background: var(--paper);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 0 6vw 80px;
 }
 
 .section {
   padding: 42px 0;
 }
 
 .section-accent {
   background: var(--sand);
   border-radius: 28px;
   padding: 52px 5vw;
 }
 
 .section-dark {
   background: #1f2b2a;
   color: #f7f4f0;
   border-radius: 28px;
   padding: 52px 5vw;
 }
 
 .section-dark a {
   color: #bfe7e4;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .eyebrow {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   margin: 0 0 16px;
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.1rem, 3vw, 3.1rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 2.4vw, 2.3rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .image-frame {
   background: var(--stone);
   border-radius: 22px;
   overflow: hidden;
 }
 
 .image-frame img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--paper);
   border-radius: 20px;
   padding: 20px;
   box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-2);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .button:focus,
 .button:hover {
   filter: brightness(0.95);
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .form-panel {
   background: var(--paper);
   border-radius: 26px;
   padding: 32px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d4ccc1;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 footer {
   padding: 40px 6vw 60px;
   background: #1a1a1a;
   color: #f2eee9;
 }
 
 footer a {
   color: #f4c28f;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .legal {
   font-size: 0.9rem;
   color: #d2ccc4;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   z-index: 20;
 }
 
 .sticky-cta a {
   background: var(--accent-2);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   display: inline-flex;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   right: 18px;
   bottom: 16px;
   background: var(--paper);
   border-radius: 16px;
   padding: 16px 18px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
   display: none;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .hero-bg {
   background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 28px;
   color: #f9f6f2;
   padding: 90px 5vw;
   position: relative;
 }
 
 .hero-bg::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 20, 20, 0.45);
   border-radius: 28px;
 }
 
 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 640px;
 }
 
 .bg-detail {
   background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 28px;
 }
 
 @media (max-width: 780px) {
   .nav-wrap {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
