 :root {
   --ink: #1b1a19;
   --muted: #5c5a57;
   --accent: #8a1f2b;
   --accent-2: #0d4f4f;
   --paper: #f7f3ef;
   --sand: #efe7df;
   --line: #d8d1c8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 3.5rem;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding: 2rem 6vw 1rem;
 }
 
 .nav-top {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   font-size: 0.95rem;
   letter-spacing: 0.02em;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.4rem;
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.85rem 1.6rem;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   text-decoration: none;
   font-weight: 600;
 }
 
 .cta-ghost {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   border: 1px solid var(--ink);
   text-decoration: none;
   font-weight: 600;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   padding: 0 6vw;
 }
 
 .hero-media {
   background: var(--sand);
   padding: 1.2rem;
   border-radius: 1.4rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .hero-copy h1 {
   font-size: clamp(2rem, 4vw, 3.4rem);
   line-height: 1.1;
   margin-bottom: 1rem;
 }
 
 .meta-line {
   text-transform: uppercase;
   font-size: 0.75rem;
   letter-spacing: 0.2em;
   color: var(--muted);
 }
 
 .mag-section {
   padding: 0 6vw;
 }
 
 .mag-row {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .mag-card {
   border: 1px solid var(--line);
   padding: 1.5rem;
   border-radius: 1rem;
   background: #fff;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .note {
   background: var(--sand);
   padding: 1.5rem;
   border-radius: 1rem;
   font-style: italic;
 }
 
 .pull-quote {
   font-size: 1.4rem;
   border-left: 3px solid var(--accent);
   padding-left: 1rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat {
   padding: 1.2rem;
   border-radius: 0.9rem;
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .price {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--accent-2);
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
   border: 1px solid var(--line);
   padding: 1.8rem;
   border-radius: 1.2rem;
   background: #fff;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   padding: 0.75rem 0.9rem;
   border-radius: 0.7rem;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .footer {
   padding: 2.5rem 6vw 3.5rem;
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
   background: #fff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 1.5rem;
   align-self: flex-end;
   margin: 0 6vw;
   background: var(--accent-2);
   color: #fff;
   padding: 1rem 1.4rem;
   border-radius: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 1rem 1rem 1rem;
   background: #fff;
   border: 1px solid var(--line);
   padding: 1rem;
   border-radius: 0.9rem;
   display: flex;
   flex-direction: column;
   gap: 0.9rem;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.8rem;
   flex-wrap: wrap;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .image-strip {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
 }
 
 .tag {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.18em;
   color: var(--muted);
 }
 
 @media (min-width: 900px) {
   .nav {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .nav-top {
     flex-direction: row;
     align-items: center;
     gap: 2rem;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-copy,
   .hero-media {
     flex: 1;
   }
 
   .mag-row {
     flex-direction: row;
   }
 
   .two-col {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .two-col > * {
     flex: 1;
   }
 
   .pricing-grid {
     flex-direction: row;
   }
 
   .pricing-grid .mag-card {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stats .stat {
     flex: 1;
   }
 }
