 :root {
   color-scheme: light;
   --bg: #f8f6f2;
   --surface: #ffffff;
   --text: #1e1b16;
   --muted: #5c5246;
   --brand: #7a5c3b;
   --brand-dark: #5a4127;
   --accent: #c7a36c;
   --border: #e4ded6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 0.04em;
 }
 
 .primary-nav {
   display: none;
   gap: 20px;
   align-items: center;
 }
 
 .primary-nav a {
   color: var(--muted);
   font-weight: 500;
 }
 
 .primary-nav a:hover,
 .primary-nav a:focus {
   color: var(--brand);
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: var(--surface);
   padding: 10px 12px;
   border-radius: 999px;
   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .menu-toggle span {
   width: 22px;
   height: 2px;
   background: var(--text);
   display: block;
   position: relative;
 }
 
 .menu-toggle span::before,
 .menu-toggle span::after {
   content: "";
   position: absolute;
   left: 0;
   width: 22px;
   height: 2px;
   background: var(--text);
 }
 
 .menu-toggle span::before {
   top: -6px;
 }
 
 .menu-toggle span::after {
   top: 6px;
 }
 
 .mobile-menu {
   position: fixed;
   inset: 0;
   background: rgba(30, 27, 22, 0.5);
   display: flex;
   align-items: flex-start;
   justify-content: flex-end;
 }
 
 .mobile-menu__panel {
   background: var(--surface);
   width: min(320px, 85%);
   min-height: 100%;
   padding: 28px 24px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .mobile-menu__links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .mobile-menu__links a {
   font-weight: 600;
   color: var(--text);
 }
 
 .mobile-menu__actions {
   margin-top: auto;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .mobile-menu[hidden] {
   display: none;
 }
 
 .hero {
   padding: 56px 0 32px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2rem;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   transition: 0.2s ease;
 }
 
 .button.primary {
   background: var(--brand);
   color: #fff;
 }
 
 .button.primary:hover,
 .button.primary:focus {
   background: var(--brand-dark);
 }
 
 .button.secondary {
   background: transparent;
   border-color: var(--brand);
   color: var(--brand);
 }
 
 .button.ghost {
   background: transparent;
   border-color: var(--border);
   color: var(--text);
 }
 
 .section {
   padding: 32px 0;
 }
 
 .section-title {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 20px;
 }
 
 .section-title h2 {
   margin: 0;
   font-size: 1.6rem;
 }
 
 .section-title p {
   margin: 0;
   color: var(--muted);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card strong {
   font-size: 1.1rem;
 }
 
 .meta {
   color: var(--muted);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .testimonial {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .testimonial p {
   margin: 0;
 }
 
 .testimonial span {
   font-weight: 600;
   color: var(--brand);
 }
 
 .banner {
   background: var(--brand);
   color: #fff;
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .banner a {
   color: #fff;
   text-decoration: underline;
 }
 
 .page-hero {
   padding: 40px 0 24px;
 }
 
 .page-hero h1 {
   margin: 0;
   font-size: 2rem;
 }
 
 .page-hero p {
   margin-top: 8px;
   color: var(--muted);
 }
 
 .two-column {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 0;
   margin: 0;
   list-style: none;
 }
 
 .list li {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
 }
 
 .footer {
   border-top: 1px solid var(--border);
   padding: 28px 0 40px;
   background: var(--surface);
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer a {
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 16px;
   width: min(960px, 92%);
   box-shadow: 0 12px 30px rgba(30, 27, 22, 0.15);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner[hidden] {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(30, 27, 22, 0.6);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 24px;
   z-index: 40;
 }
 
 .cookie-modal[hidden] {
   display: none;
 }
 
 .cookie-modal__content {
   background: var(--surface);
   border-radius: 20px;
   padding: 24px;
   width: min(600px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-option {
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 14px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .cookie-toggle {
   align-self: flex-start;
   border: 1px solid var(--border);
   background: var(--bg);
   padding: 6px 12px;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .cookie-toggle[aria-pressed="true"] {
   background: var(--accent);
   border-color: var(--accent);
   color: #2a1d0f;
 }
 
 .footer-meta {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 @media (min-width: 768px) {
   .primary-nav {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero h1,
   .page-hero h1 {
     font-size: 2.5rem;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .card-grid,
   .testimonials {
     flex-direction: row;
   }
 
   .card,
   .testimonial {
     flex: 1;
   }
 
   .two-column {
     flex-direction: row;
   }
 
   .two-column > div {
     flex: 1;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .footer nav {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
