 :root {
   --charcoal: #1f2933;
   --stone: #f4f1ed;
   --slate: #32424f;
   --mist: #e6edf2;
   --teal: #2b6f6d;
   --gold: #c8a96a;
   --white: #ffffff;
   --shadow: 0 12px 30px rgba(31, 41, 51, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--charcoal);
   background: var(--white);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: auto;
   width: 1px;
   height: 1px;
   overflow: hidden;
 }
 
 .skip-link:focus {
   position: static;
   width: auto;
   height: auto;
   padding: 0.75rem 1rem;
   background: var(--gold);
   color: var(--charcoal);
 }
 
 .container {
   width: min(1200px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--stone);
 }
 
 .section.mist {
   background: var(--mist);
 }
 
 .section header {
   margin-bottom: 2rem;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.78rem;
   color: var(--teal);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0.5rem 0 1rem;
 }
 
 h1 {
   font-size: clamp(2.4rem, 4vw, 3.6rem);
 }
 
 h2 {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
 }
 
 h3 {
   font-size: 1.3rem;
 }
 
 p {
   margin: 0 0 1rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--teal);
   color: var(--white);
   font-weight: 600;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--teal);
   border-color: var(--teal);
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-2px);
   box-shadow: var(--shadow);
 }
 
 .site-header {
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 50;
   border-bottom: 1px solid var(--mist);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .logo {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 1rem;
   padding: 1rem;
   background: var(--white);
   border: 1px solid var(--mist);
   border-radius: 1rem;
   box-shadow: var(--shadow);
   position: absolute;
   right: 4%;
   top: 70px;
   min-width: 220px;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-toggle {
   border: 1px solid var(--mist);
   background: var(--white);
   padding: 0.6rem 0.8rem;
   border-radius: 0.75rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 600;
 }
 
 .nav-toggle svg {
   width: 22px;
 }
 
 .nav-open .nav-links {
   display: flex;
 }
 
 .hero {
   padding: 4rem 0;
 }
 
 .hero .container {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--stone);
   padding: 2rem;
   border-radius: 1.5rem;
   box-shadow: var(--shadow);
 }
 
 .hero-card ul {
   padding-left: 1rem;
   margin: 1rem 0 0;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--white);
   border: 1px solid var(--mist);
   padding: 1.5rem;
   border-radius: 1.2rem;
   box-shadow: var(--shadow);
 }
 
 .card.alt {
   background: var(--mist);
   border: none;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 0.75rem;
 }
 
 .icon-row svg {
   width: 32px;
   height: 32px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat {
   background: var(--white);
   border-radius: 1rem;
   padding: 1.5rem;
   border: 1px solid var(--mist);
 }
 
 .stat strong {
   display: block;
   font-size: 2rem;
   color: var(--teal);
 }
 
 .quote {
   font-size: 1.4rem;
   font-style: italic;
   background: var(--teal);
   color: var(--white);
   padding: 2rem;
   border-radius: 1.5rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .list li {
   display: flex;
   gap: 0.75rem;
 }
 
 .list svg {
   width: 20px;
   flex-shrink: 0;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .testimonial {
   background: var(--white);
   padding: 1.6rem;
   border-radius: 1.2rem;
   border: 1px solid var(--mist);
 }
 
 .testimonial span {
   display: block;
   margin-top: 1rem;
   font-weight: 600;
   color: var(--slate);
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .badge {
   background: var(--mist);
   padding: 0.6rem 1rem;
   border-radius: 999px;
   font-weight: 600;
   color: var(--slate);
 }
 
 .faq-item {
   border-bottom: 1px solid var(--mist);
   padding: 1rem 0;
 }
 
 .faq-item button {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   background: none;
   border: none;
   padding: 0;
   text-align: left;
   font-size: 1rem;
 }
 
 .faq-content {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.2s ease;
 }
 
 .faq-item.active .faq-content {
   max-height: 300px;
   margin-top: 0.75rem;
 }
 
 .cta-panel {
   background: var(--charcoal);
   color: var(--white);
   padding: 2.5rem;
   border-radius: 1.5rem;
 }
 
 .cta-panel .btn.secondary {
   color: var(--white);
   border-color: var(--white);
 }
 
 .service-table {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .service-card {
   background: var(--white);
   border-radius: 1.3rem;
   border: 1px solid var(--mist);
   padding: 1.6rem;
 }
 
 .service-card strong {
   font-size: 1.4rem;
 }
 
 .price {
   color: var(--teal);
   font-weight: 700;
   font-size: 1.2rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1.2rem;
   background: var(--mist);
   border-radius: 1rem;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.8rem;
 }
 
 .info-block {
   background: var(--stone);
   padding: 1.6rem;
   border-radius: 1.2rem;
 }
 
 .site-footer {
   background: var(--slate);
   color: var(--white);
   padding: 2.5rem 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .footer-bottom {
   margin-top: 2rem;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--charcoal);
   color: var(--white);
   padding: 1.5rem;
   border-radius: 1.2rem;
   width: min(900px, 92%);
   display: none;
   flex-direction: column;
   gap: 1rem;
   box-shadow: var(--shadow);
   z-index: 200;
 }
 
 .cookie-banner.active {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .cookie-actions .btn {
   width: 100%;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 41, 51, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 250;
 }
 
 .cookie-modal.active {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--white);
   border-radius: 1.5rem;
   padding: 2rem;
   width: min(520px, 95%);
   box-shadow: var(--shadow);
 }
 
 .cookie-option {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.8rem 0;
   border-bottom: 1px solid var(--mist);
 }
 
 .cookie-option:last-of-type {
   border-bottom: none;
 }
 
 .cookie-modal-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   margin-top: 1.5rem;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     border: none;
     box-shadow: none;
     padding: 0;
     gap: 1.5rem;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero .container {
     flex-direction: row;
     align-items: center;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .split {
     flex-direction: row;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .contact-grid > div {
     flex: 1 1 50%;
   }
 
   .service-table {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 280px;
   }
 
   .cookie-actions,
   .cookie-modal-actions {
     flex-direction: row;
   }
 
   .cookie-actions .btn,
   .cookie-modal-actions .btn {
     width: auto;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.2rem;
   }
 }
