 :root {
   --bg: #f6f1ea;
   --ink: #1f1b16;
   --muted: #6b6158;
   --accent: #c45d3b;
   --accent-2: #3c6e6b;
   --paper: #ffffff;
   --sand: #efe2d6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", 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;
   gap: 48px;
   padding: 32px 20px 80px;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 600;
   letter-spacing: 0.6px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav-links a {
   font-size: 14px;
   padding-bottom: 4px;
   border-bottom: 1px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--ink);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--paper);
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 18px 30px rgba(21, 15, 10, 0.12);
 }
 
 .hero-card h1 {
   font-size: 32px;
   margin: 0 0 12px;
 }
 
 .hero-card p {
   margin: 0 0 18px;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   font-size: 14px;
   border: none;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .hero-image {
   border-radius: 24px;
   overflow: hidden;
   position: relative;
 }
 
 .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .badge {
   position: absolute;
   bottom: 16px;
   left: 16px;
   background: rgba(31, 27, 22, 0.75);
   color: #fff;
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 12px;
 }
 
 .asym-section {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: var(--sand);
   padding: 28px;
   border-radius: 24px;
   position: relative;
 }
 
 .asym-section.offset {
   margin-left: 12px;
   background: #fdf9f3;
 }
 
 .asym-section .floating-tag {
   position: absolute;
   top: -14px;
   right: 22px;
   background: var(--accent-2);
   color: #fff;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 12px;
 }
 
 .section-title {
   font-size: 24px;
   margin: 0;
 }
 
 .columns {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--paper);
   padding: 20px;
   border-radius: 18px;
   border: 1px solid rgba(31, 27, 22, 0.08);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .quote {
   font-style: italic;
   color: var(--muted);
   border-left: 3px solid var(--accent);
   padding-left: 14px;
 }
 
 .highlight {
   background: rgba(196, 93, 59, 0.12);
   padding: 6px 10px;
   border-radius: 8px;
   display: inline-block;
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price-card {
   background: #fff;
   border-radius: 18px;
   padding: 22px;
   border: 1px solid rgba(31, 27, 22, 0.12);
 }
 
 .price-card h4 {
   margin: 0 0 6px;
 }
 
 .price {
   font-size: 22px;
   color: var(--accent);
   margin: 8px 0;
 }
 
 .form-shell {
   background: var(--paper);
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 12px 24px rgba(31, 27, 22, 0.12);
 }
 
 .form-shell label {
   font-size: 14px;
   color: var(--muted);
 }
 
 .form-shell input,
 .form-shell select,
 .form-shell textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid rgba(31, 27, 22, 0.2);
   font-size: 14px;
   font-family: inherit;
 }
 
 .form-shell button {
   width: 100%;
 }
 
 .form-hint {
   font-size: 12px;
   color: var(--muted);
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 16px;
   display: flex;
   justify-content: center;
   z-index: 10;
 }
 
 .sticky-cta .btn {
   background: var(--accent-2);
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 16px;
   border-top: 1px solid rgba(31, 27, 22, 0.1);
   padding-top: 20px;
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(31, 27, 22, 0.2);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-actions .btn.secondary {
   border-color: var(--accent-2);
   color: var(--accent-2);
 }
 
 .image-stack {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .image-stack img {
   border-radius: 16px;
 }
 
 .note-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .tagline {
   font-size: 14px;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 @media (min-width: 900px) {
   .page {
     padding: 40px 60px 100px;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card,
   .hero-image {
     flex: 1;
   }
 
   .columns {
     flex-direction: row;
   }
 
   .columns > * {
     flex: 1;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card-row .card {
     flex: 1;
   }
 
   .pricing-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .pricing-grid .price-card {
     flex: 1 1 45%;
   }
 
   .image-stack {
     flex-direction: row;
   }
 
   .note-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
