 :root {
   --bg: #f8f6f2;
   --surface: #ffffff;
   --ink: #1d1a17;
   --muted: #5a524a;
   --brand: #5a2e1d;
   --brand-light: #e7d7c6;
   --accent: #d08b5b;
   --stroke: #e5ddd4;
   --success: #2d6a4f;
   --shadow: 0 10px 30px rgba(29, 26, 23, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.soft {
   background: var(--brand-light);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.8rem;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   border: 1px solid transparent;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .button:hover,
 .button:focus {
   background: #4a2416;
   transform: translateY(-1px);
 }
 
 .button.outline {
   background: transparent;
   color: var(--brand);
   border-color: var(--brand);
 }
 
 .button.light {
   background: #fff;
   color: var(--brand);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   padding: 6px 14px;
   border-radius: 999px;
   background: var(--brand-light);
   color: var(--brand);
   font-size: 0.9rem;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--stroke);
   position: sticky;
   top: 0;
   z-index: 40;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
 }
 
 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .logo svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-links {
   display: none;
   gap: 20px;
   align-items: center;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--muted);
 }
 
 .menu-button {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 14px;
   border-radius: 999px;
   border: 1px solid var(--stroke);
   background: #fff;
   font-weight: 600;
 }
 
 .mobile-menu {
   position: fixed;
   inset: 0;
   background: rgba(29, 26, 23, 0.4);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.2s ease;
   z-index: 45;
 }
 
 .mobile-menu.open {
   opacity: 1;
   visibility: visible;
 }
 
 .mobile-menu-panel {
   background: var(--surface);
   height: 100%;
   width: min(320px, 80vw);
   padding: 30px 24px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   box-shadow: var(--shadow);
 }
 
 .mobile-menu-panel a {
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--ink);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-visual {
   background: var(--brand-light);
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .icon-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .icon-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 14px;
   border-radius: 16px;
   background: #fff;
   font-weight: 600;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   padding: 22px;
   border-radius: 20px;
   border: 1px solid var(--stroke);
   box-shadow: 0 12px 20px rgba(29, 26, 23, 0.05);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.highlight {
   background: var(--brand);
   color: #fff;
 }
 
 .card.highlight .pill {
   background: rgba(255, 255, 255, 0.2);
   color: #fff;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding-left: 0;
   margin: 0;
   list-style: none;
 }
 
 .list li {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .list svg {
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   background: #fff;
   border-radius: 16px;
   padding: 16px 18px;
   border: 1px solid var(--stroke);
 }
 
 .stat strong {
   font-size: 1.5rem;
 }
 
 .quote {
   font-size: 1.2rem;
   font-weight: 600;
   margin: 0;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .timeline-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .timeline-item span {
   min-width: 70px;
   font-weight: 700;
   color: var(--brand);
 }
 
 .compare {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .compare-row {
   display: flex;
   justify-content: space-between;
   gap: 18px;
   padding: 14px 16px;
   border-radius: 14px;
   background: #fff;
   border: 1px solid var(--stroke);
 }
 
 .compare-row strong {
   color: var(--brand);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: #fff;
   border-radius: 16px;
   border: 1px solid var(--stroke);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: transparent;
   border: none;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 footer {
   background: #1f1b18;
   color: #f8f1e7;
   padding: 48px 0;
 }
 
 footer a {
   color: #f8f1e7;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .badge-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 12px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.1);
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 16px 16px 16px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   border: 1px solid var(--stroke);
   display: flex;
   flex-direction: column;
   gap: 14px;
   z-index: 60;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(29, 26, 23, 0.5);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.2s ease;
   z-index: 70;
 }
 
 .cookie-modal.open {
   opacity: 1;
   visibility: visible;
 }
 
 .cookie-panel {
   width: min(520px, 90vw);
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 14px;
   border-radius: 12px;
   background: var(--bg);
 }
 
 .toggle {
   border-radius: 999px;
   padding: 8px 16px;
   border: 1px solid var(--stroke);
   background: #fff;
   font-weight: 600;
 }
 
 .toggle.active {
   background: var(--success);
   color: #fff;
   border-color: var(--success);
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-button {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card,
   .hero-visual {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card-grid .card {
     flex: 1 1 calc(50% - 20px);
   }
 
   .two-col {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .two-col > div {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(50% - 18px);
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
