 :root {
   color-scheme: light;
   --bg: #f6f2ee;
   --ink: #1a1512;
   --muted: #5e524b;
   --brand: #7a4b2c;
   --brand-dark: #5e3922;
   --accent: #d7b08a;
   --panel: #ffffff;
   --line: #e2d7cd;
   --shadow: 0 10px 30px rgba(26, 21, 18, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 10px;
   background: var(--brand);
   color: #fff;
   padding: 10px 16px;
   border-radius: 999px;
 }
 
 .skip-link:focus {
   left: 20px;
   z-index: 10;
 }
 
 header {
   background: var(--panel);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .brand-title {
   font-size: 1.1rem;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .menu-toggle {
   border: 1px solid var(--line);
   background: #fff;
   padding: 10px 14px;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .site-nav {
   display: none;
   flex-direction: column;
   gap: 10px;
   background: var(--panel);
   border-top: 1px solid var(--line);
   padding: 16px 0;
 }
 
 .site-nav a {
   padding: 10px 20px;
   color: var(--muted);
   font-weight: 600;
 }
 
 .nav-open .site-nav {
   display: flex;
 }
 
 main {
   padding: 32px 0 64px;
 }
 
 .section {
   padding: 40px 0;
 }
 
 .section-alt {
   background: var(--panel);
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
 }
 
 .section-title {
   font-size: 1.8rem;
   margin-bottom: 16px;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 720px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--panel);
   border-radius: 20px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   color: var(--brand);
   font-weight: 600;
   gap: 8px;
   background: transparent;
 }
 
 .button.primary {
   background: var(--brand);
   color: #fff;
 }
 
 .button.secondary {
   border-color: var(--line);
   color: var(--muted);
   background: #fff;
 }
 
 .feature-grid,
 .card-grid,
 .stat-grid,
 .testimonial-grid,
 .service-grid,
 .compare-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .card,
 .feature,
 .stat,
 .testimonial,
 .service,
 .compare-card {
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
 }
 
 .feature-icon {
   width: 36px;
   height: 36px;
   margin-bottom: 10px;
 }
 
 .stat strong {
   font-size: 1.6rem;
   display: block;
 }
 
 .divider {
   height: 1px;
   background: var(--line);
   margin: 24px 0;
 }
 
 .quote {
   background: var(--brand);
   color: #fff;
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .list li {
   list-style: none;
   padding-left: 24px;
   position: relative;
   color: var(--muted);
 }
 
 .list li::before {
   content: "•";
   position: absolute;
   left: 0;
   color: var(--brand);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 18px;
 }
 
 .process-step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--accent);
   color: var(--brand-dark);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 20px;
 }
 
 .faq-item {
   background: var(--panel);
   border-radius: 16px;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px 18px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 18px 18px;
   color: var(--muted);
 }
 
 .faq-answer[hidden] {
   display: none;
 }
 
 footer {
   background: #1e1714;
   color: #f8f4f0;
   padding: 40px 0 24px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
   color: #d8c9bf;
 }
 
 .footer-note {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   margin-top: 24px;
   padding-top: 16px;
   font-size: 0.9rem;
   color: #c8bbb3;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #fff;
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(18, 12, 8, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 40;
 }
 
 .modal-backdrop.is-open {
   display: flex;
 }
 
 .modal {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: var(--shadow);
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .toggle-button {
   border: 1px solid var(--line);
   background: #fff;
   padding: 8px 14px;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #efe7e1;
   color: var(--brand-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .notice {
   background: #fff7ef;
   border: 1px solid #f0d5bb;
   padding: 18px;
   border-radius: 14px;
   color: var(--brand-dark);
 }
 
 .highlight-panel {
   background: #fdf6ef;
   border: 1px solid #f0d9c3;
   padding: 22px;
   border-radius: 18px;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand-dark);
   margin-top: 8px;
 }
 
 .two-column {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 @media (min-width: 768px) {
   .site-nav {
     display: flex;
     flex-direction: row;
     border-top: none;
     padding: 0;
     gap: 6px;
   }
 
   .site-nav a {
     padding: 8px 14px;
     border-radius: 999px;
   }
 
   .site-nav a:hover {
     background: #f1e9e2;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .feature-grid,
   .card-grid,
   .stat-grid,
   .testimonial-grid,
   .service-grid,
   .compare-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature,
   .card,
   .stat,
   .testimonial,
   .service,
   .compare-card {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .two-column {
     flex-direction: row;
   }
 }
