 :root {
   color-scheme: light;
   --bg: #f6f2ee;
   --ink: #1f1b17;
   --muted: #6f655b;
   --accent: #8b2c1f;
   --accent-light: #f0d8c9;
   --dark: #151210;
   --white: #ffffff;
   --border: #e4d7cd;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   padding: 28px 8vw 18px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 nav a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav-cta {
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
   font-weight: 600;
 }
 
 main {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .section {
   padding: 64px 8vw;
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .split-row {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .split-row.reverse {
   flex-direction: column;
 }
 
 .panel {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .panel h1,
 .panel h2,
 .panel h3 {
   font-weight: 600;
 }
 
 .hero-title {
   font-size: 2.5rem;
   line-height: 1.2;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 8px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
 }
 
 .cta-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .section-dark {
   background: var(--dark);
   color: var(--white);
 }
 
 .section-accent {
   background: var(--accent-light);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .price {
   font-size: 1.2rem;
   font-weight: 600;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding-left: 18px;
 }
 
 .list li {
   list-style: disc;
 }
 
 .form-wrap {
   background: var(--white);
   border-radius: 20px;
   padding: 24px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border: 1px solid var(--border);
   border-radius: 10px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--white);
   border: 1px solid var(--border);
   font-size: 0.9rem;
 }
 
 .image-frame {
   border-radius: 22px;
   overflow: hidden;
   border: 1px solid var(--border);
 }
 
 .floating-note {
   background: var(--white);
   border-radius: 18px;
   padding: 16px;
   border: 1px solid var(--border);
   max-width: 320px;
 }
 
 .footer {
   padding: 32px 8vw 48px;
   background: var(--dark);
   color: var(--white);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 10px 16px;
   display: flex;
   align-items: center;
   gap: 12px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   z-index: 10;
 }
 
 .sticky-cta .sticky-link {
   background: var(--accent);
   color: var(--white);
   padding: 8px 14px;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: var(--dark);
   color: var(--white);
   padding: 18px;
   border-radius: 16px;
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
   border: none;
   padding: 8px 10px;
   border-radius: 8px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: var(--white);
 }
 
 .cookie-reject {
   background: transparent;
   color: var(--white);
   border: 1px solid var(--white);
 }
 
 @media (min-width: 900px) {
   .split-row {
     flex-direction: row;
     align-items: center;
   }
 
   .split-row.reverse {
     flex-direction: row-reverse;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 }
