 :root {
   color-scheme: light;
   --ink: #1a1a1a;
   --muted: #5a5f66;
   --accent: #9a2b2f;
   --accent-dark: #6f1e22;
   --sand: #f4f0eb;
   --stone: #e5ded6;
   --mist: #f9f7f4;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--mist);
   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 {
   background: #fff;
   border-bottom: 1px solid var(--stone);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 6%;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand strong {
   font-size: 1.2rem;
   letter-spacing: 0.04em;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 2px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   font-weight: 600;
   border: none;
 }
 
 .cta-button.alt {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .cta-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 main {
   flex: 1;
 }
 
 section {
   padding: 68px 6%;
 }
 
 .section-sand {
   background: var(--sand);
 }
 
 .section-white {
   background: #fff;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 32px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .split-content {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split-media {
   flex: 1;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 14px;
   background: var(--sand);
   border-radius: 999px;
   font-size: 0.85rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--accent-dark);
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--stone);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 14px;
 }
 
 .pricing-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .pricing-item {
   flex: 1 1 240px;
   background: var(--sand);
   padding: 18px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .highlight {
   background: #fff;
   border: 1px solid var(--stone);
   border-radius: 20px;
   padding: 24px;
 }
 
 .form-panel {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   border: 1px solid var(--stone);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--stone);
   font-size: 0.95rem;
   font-family: inherit;
 }
 
 textarea {
   resize: vertical;
   min-height: 120px;
 }
 
 .footer {
   background: #111;
   color: #fff;
   padding: 36px 6%;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: #fff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 12;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: #fff;
   border: 1px solid var(--stone);
   padding: 16px;
   border-radius: 16px;
   max-width: 320px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .inline-cta {
   background: var(--sand);
   padding: 16px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .image-frame {
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--stone);
 }
 
 .muted {
   color: var(--muted);
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 }
