 :root {
   --bg: #f8f3ef;
   --bg-alt: #fff7f1;
   --text: #2a2220;
   --muted: #6f5f59;
   --brand: #4b1f3f;
   --brand-2: #b56b3e;
   --accent: #2e6b5b;
   --white: #ffffff;
   --shadow: 0 12px 30px rgba(33, 20, 27, 0.12);
   --radius: 16px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 12px;
   background: var(--brand);
   color: var(--white);
   padding: 8px 12px;
   border-radius: 8px;
 }
 
 .skip-link:focus {
   left: 12px;
   z-index: 999;
 }
 
 header {
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 100;
   box-shadow: 0 6px 20px rgba(33, 20, 27, 0.08);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand svg {
   width: 36px;
   height: 36px;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--brand);
   color: var(--brand);
   padding: 8px 12px;
   border-radius: 10px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .nav-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   background: var(--white);
   border-radius: 14px;
   box-shadow: var(--shadow);
   position: absolute;
   right: 4%;
   top: 68px;
   width: min(280px, 88vw);
 }
 
 .nav-menu a {
   padding: 8px 10px;
   border-radius: 8px;
 }
 
 .nav-menu a:hover,
 .nav-menu a:focus {
   background: var(--bg-alt);
 }
 
 .nav-menu.is-open {
   display: flex;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section--alt {
   background: var(--bg-alt);
 }
 
 .section--dark {
   background: var(--brand);
   color: var(--white);
 }
 
 .section--dark a {
   color: var(--white);
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 1px;
   color: var(--brand-2);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.1rem, 4vw, 3.4rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
   margin-top: 8px;
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   color: var(--muted);
   margin-top: 12px;
 }
 
 .section--dark p {
   color: rgba(255, 255, 255, 0.8);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 18px;
   border-radius: 999px;
   background: var(--brand);
   color: var(--white);
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .button.light {
   background: var(--white);
   color: var(--brand);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--white);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-card svg {
   width: 56px;
   height: 56px;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .card {
   background: var(--white);
   padding: 22px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card strong {
   color: var(--text);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-item svg {
   width: 28px;
   height: 28px;
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--white);
   padding: 18px;
   border-radius: 14px;
   box-shadow: var(--shadow);
 }
 
 .stat span {
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--brand);
 }
 
 .quote {
   background: var(--white);
   padding: 28px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .quote p {
   font-size: 1.1rem;
 }
 
 .quote .author {
   margin-top: 16px;
   font-weight: 600;
   color: var(--text);
 }

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.spacer-24 {
  margin-top: 24px;
}

.stack-24 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split .panel {
   background: var(--white);
   padding: 24px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   border-left: 3px solid var(--brand-2);
   padding-left: 16px;
 }
 
 .services-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 22px;
   border-radius: 16px;
   background: var(--white);
   box-shadow: var(--shadow);
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .panel {
   background: var(--white);
   padding: 18px;
   border-radius: 14px;
   box-shadow: var(--shadow);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--white);
   border-radius: 12px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .footer {
   background: #1f171c;
   color: rgba(255, 255, 255, 0.8);
   padding: 44px 0;
 }
 
 .footer a {
   color: rgba(255, 255, 255, 0.9);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer small {
   color: rgba(255, 255, 255, 0.6);
 }

.footer-bottom {
  margin-top: 24px;
}
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--white);
   border-radius: 16px;
   box-shadow: var(--shadow);
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 200;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(24, 16, 20, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 16px;
   z-index: 300;
 }
 
 .modal-backdrop.is-visible {
   display: flex;
 }
 
 .modal {
   background: var(--white);
   border-radius: 18px;
   padding: 24px;
   width: min(540px, 95vw);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .modal h3 {
   margin-bottom: 6px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 10px 0;
   border-bottom: 1px solid rgba(42, 34, 32, 0.1);
 }
 
 .toggle-row input {
   width: 18px;
   height: 18px;
 }
 
 .badge-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--bg-alt);
   color: var(--brand);
   font-weight: 600;
   font-size: 0.85rem;
 }
 
 .address-block {
   background: var(--white);
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .info-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .note {
   background: rgba(181, 107, 62, 0.12);
   padding: 14px;
   border-radius: 12px;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-menu {
     display: flex;
     position: static;
     flex-direction: row;
     gap: 22px;
     padding: 0;
     box-shadow: none;
     width: auto;
     background: transparent;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 280px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 180px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split .panel {
     flex: 1 1 280px;
   }
 
   .services-list .service-card {
     flex-direction: row;
     align-items: flex-start;
     justify-content: space-between;
     gap: 20px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison .panel {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .info-row {
     flex-direction: row;
     justify-content: space-between;
   }
 }
