 :root {
   --bg: #f7f2ea;
   --ink: #1f1b16;
   --muted: #6f6257;
   --accent: #8a3d2b;
   --accent-2: #2b6f5a;
   --light: #fffaf2;
   --card: #ffffff;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
   border-radius: 16px;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 .magazine-header {
   display: flex;
   flex-direction: column;
   padding: 24px 20px 12px;
   background: var(--light);
   border-bottom: 1px solid #e8dfd2;
 }

 .nav-row {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }

 .brand {
   font-weight: 700;
   letter-spacing: 1px;
 }

 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 14px;
 }

 .cta-pill {
   background: var(--accent);
   color: white;
   padding: 10px 18px;
   border-radius: 999px;
   font-size: 14px;
 }

 .hero {
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding: 30px 20px 40px;
 }

 .hero h1 {
   font-size: clamp(28px, 5vw, 48px);
   margin: 0;
 }

 .hero p {
   color: var(--muted);
   max-width: 720px;
 }

 .hero-visual {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .hero-tag {
   position: absolute;
   top: 16px;
   left: 16px;
   background: rgba(255, 255, 255, 0.9);
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 12px;
 }

 .section {
   padding: 32px 20px;
 }

 .section.alt {
   background: var(--light);
 }

 .section.dark {
   background: #1e1813;
   color: #fef5e8;
 }

 .columns {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .columns.row {
   flex-direction: column;
 }

 .magazine-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .card {
   background: var(--card);
   padding: 20px;
   border-radius: 18px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .card strong {
   font-size: 18px;
 }

 .inline-cta {
   color: var(--accent-2);
   font-weight: 600;
   text-decoration: underline;
 }

 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-style: italic;
 }

 .split-panel {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--accent);
 }

 .form-wrap {
   background: white;
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .form-group {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #dcd3c6;
   font-size: 14px;
 }

 .btn {
   border: none;
   padding: 12px 20px;
   border-radius: 12px;
   background: var(--accent-2);
   color: white;
   font-weight: 600;
   cursor: pointer;
 }

 .btn.secondary {
   background: transparent;
   border: 1px solid #ffffff;
   color: #ffffff;
 }

 .sticky-cta {
   position: fixed;
   right: 16px;
   bottom: 16px;
   background: var(--accent);
   color: white;
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 14px;
   z-index: 20;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
 }

 .footer {
   background: #1e1813;
   color: #fef5e8;
   padding: 30px 20px;
 }

 .footer a {
   color: #fef5e8;
 }

 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-size: 14px;
 }

 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 80px;
   background: white;
   padding: 16px;
   border-radius: 16px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 @media (min-width: 768px) {
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }

   .hero-visual {
     flex: 1;
   }

   .hero-text {
     flex: 1;
   }

   .columns.row {
     flex-direction: row;
   }

   .magazine-grid {
     flex-direction: row;
   }

   .magazine-grid .card {
     flex: 1;
   }

   .split-panel {
     flex-direction: row;
     align-items: stretch;
   }

   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 }
