 :root {
   --bg: #f7f4ef;
   --ink: #1f1d1a;
   --muted: #6b625c;
   --accent: #c46c4b;
   --accent-dark: #9a4f35;
   --surface: #ffffff;
   --sand: #efe7dd;
   --olive: #d9d2c4;
   --shadow: 0 20px 50px rgba(31, 29, 26, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid rgba(31, 29, 26, 0.08);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 22px 6vw;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 1px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .cta-primary {
   background: var(--accent);
   color: #fff;
   padding: 12px 24px;
   border-radius: 999px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 0;
   cursor: pointer;
 }
 
 .cta-outline {
   border: 1px solid var(--accent-dark);
   color: var(--accent-dark);
   padding: 12px 24px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .cta-text {
   color: var(--accent-dark);
   font-weight: 600;
   border-bottom: 1px solid currentColor;
   padding-bottom: 2px;
 }
 
 main {
   flex: 1;
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split__content,
 .split__media {
   flex: 1 1 320px;
 }
 
 .split__media img {
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .label {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   margin-top: 12px;
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.2rem, 4vw, 3.6rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.5rem);
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   background: var(--surface);
   padding: 24px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   flex: 1 1 240px;
 }
 
 .card img {
   border-radius: 16px;
   margin-bottom: 18px;
 }
 
 .dual-column {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .dual-column > div {
   flex: 1 1 280px;
 }
 
 .highlight {
   background: var(--sand);
 }
 
 .deep {
   background: var(--olive);
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pricing-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--surface);
   padding: 18px 22px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pricing-item span {
   font-weight: 600;
 }
 
 .form-wrap {
   background: var(--surface);
   padding: 28px;
   border-radius: 22px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid rgba(31, 29, 26, 0.2);
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
 }
 
 .sticky-cta a {
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--surface);
   padding: 18px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   display: none;
   gap: 12px;
   flex-direction: column;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 footer {
   background: var(--surface);
   border-top: 1px solid rgba(31, 29, 26, 0.08);
   padding: 40px 6vw;
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: space-between;
 }
 
 footer .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   font-size: 0.9rem;
 }
 
 .note {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .spacer-top {
   margin-top: 20px;
 }
 
 @media (max-width: 720px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
