/* Crimson Spire Beratung – Minimalistisches Flexbox-Design (Mobile First) */

/* ========================
   CSS RESET + NORMALIZE
=========================== */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #343A40;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 12px;
  text-align: left;
}

/* ========================
   BRAND COLORS & FONTS
=========================== */
:root {
  --primary: #951313;
  --primary-dark: #701010;
  --secondary: #343A40;
  --secondary-light: #555b62;
  --accent: #F6F6F6;
  --white: #fff;
  --black: #181818;
  --shadow: 0px 3px 24px rgba(52, 58, 64, 0.07);
  --radius: 10px;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

/* ========================
   LAYOUT CONTAINERS
=========================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

main {
  flex: 1 0 auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Content Wrappers */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section,
.hero,
.about,
.features,
.pricing,
.services,
.steps,
.faq,
.cta,
.legal,
.map,
.contact,
.team,
.testimonials,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
}

/* ========================
   TYPOGRAPHIE
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 0.2em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.125;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.23;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, ul, ol, li, table, th, td {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary);
  font-size: 1rem;
}
ul, ol {
  padding-left: 1.2em;
  margin-top: 6px;
  margin-bottom: 14px;
  line-height: 1.7;
}
li {
  margin-bottom: 10px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

strong { font-weight: 600; }

a {
  color: var(--primary);
  word-break: break-word;
  transition: color var(--transition);
}
a:hover,
a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* ========================
   BUTTONS & CTA
=========================== */
.cta-btn, button.cta-btn {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.8em 1.5em;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 2px 14px rgba(149,19,19,0.08);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  margin-top: 16px;
  margin-bottom: 4px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-dark);
  box-shadow: 0 4px 24px rgba(149,19,19,0.09);
}
.button-row, .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========================
   HEADER / NAVIGATION
=========================== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 10px rgba(52,58,64,0.02);
  position: relative;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 20px 0;
  position: relative;
}
.main-nav > a img {
  height: 38px;
  width: auto;
  margin-right: 10px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  padding: 6px 8px;
  color: var(--secondary);
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.93;
  transition: background var(--transition), color var(--transition);
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--primary);
  background: var(--accent);
}
.main-nav .cta-btn {
  margin-left: 20px;
  font-size: 1rem;
  padding: 0.6em 1.2em;
}

/* Burger menu button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(52,58,64,0.06);
  margin-left: 10px;
  transition: background var(--transition), color var(--transition);
  z-index: 124;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--white);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1080px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 1081px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ========================
   MOBILE MENU OVERLAY
=========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(246,246,246, 0.94);
  box-shadow: -8px 0 24px rgba(52,58,64, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 28px 24px 26px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.86,0,.07,1);
  z-index: 120;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 23px;
  right: 25px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  z-index: 121;
  transition: color var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 56px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.14rem;
  color: var(--secondary);
  background: none;
  padding: 12px 0 7px 0;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 400px) {
  .mobile-menu {
    padding: 24px 10px 10px 10px;
  }
}

/* ========================
   HERO SECTIONS
=========================== */
.hero {
  padding-top: 48px;
  background: var(--accent);
  border-bottom: 1px solid #eee;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 7px;
}
.hero p {
  font-size: 1.1rem;
}

/* ========================
   FEATURES FLEX-LAYOUT
=========================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s cubic-bezier(.4,0,.2,1), transform 0.18s;
}
.feature-item img {
  height: 40px;
  width: 40px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
.feature-item p {
  color: var(--secondary-light);
}
.feature-item:hover {
  box-shadow: 0 6px 32px rgba(149,19,19,0.10);
  transform: translateY(-2px) scale(1.015);
}

.features ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  list-style: disc;
  margin-left: 23px;
}
.features h2 {
  color: var(--primary);
}

/* ========================
   SERVICES (Dienstleistungen)
=========================== */
.services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform 0.18s;
}
.service-card h3 {
  color: var(--primary);
  font-size: 1.09rem;
}
.service-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary-light);
  font-size: 1.05rem;
}
.service-card:hover {
  box-shadow: 0 7px 36px rgba(149,19,19,0.13);
  transform: translateY(-2px) scale(1.014);
}

/* ========================
   TEAM FLEX-LAYOUT
=========================== */
.team-member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 15px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 18px;
  min-width: 175px;
  flex: 1 1 175px;
  text-align: center;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.team-member img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(52,58,64,0.06);
  object-fit: cover;
}
.team-member h3 {
  color: var(--secondary);
  font-size: 1.04rem;
}
.team-member:hover {
  box-shadow: 0 6px 32px rgba(149,19,19,0.10);
  transform: translateY(-2px) scale(1.015);
}

/* ========================
   TESTIMONIALS/REVIEWS
=========================== */
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s,
              transform 0.15s;
  border: 1px solid #ececec;
  max-width: 520px;
}
.testimonial-card:hover {
  box-shadow: 0 5px 18px rgba(149,19,19,0.11);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-content p {
  color: var(--secondary);
  font-size: 1.07rem;
  font-family: var(--font-body);
  margin-bottom: 8px;
}
.testimonial-author {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: .98rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial-rating {
  color: #D49D13;
  font-size: 1.08em;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
}

/* ========================
   PRICING TABLE
=========================== */
.pricing-table {
  width: 100%;
  margin: 28px 0 20px 0;
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: var(--shadow);
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #eee;
  padding: 14px 12px;
}
.pricing-table thead {
  background: var(--primary);
  color: var(--white);
}
.pricing-table th {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #bdbdbd;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.service-price-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* ========================
   TEXT IMAGE FLEX SECTIONS
=========================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.text-image-section .text {
  flex: 2 2 260px;
}
.text-image-section .image {
  flex: 1 1 160px;
  min-width: 120px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .text-image-section .image {
    width: 100%;
    max-width: 100%;
  }
}

/* ========================
   ADDRESS BLOCK (Kontakt)
=========================== */
.address-block {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px 18px;
  margin-top: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.address-block p {
  color: var(--secondary-light);
}
.address-block a {
  color: var(--primary);
  text-decoration: underline dotted;
}

/* ========================
   MAP SECTION
=========================== */
.location-placeholder {
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--accent);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 14px;
  margin-bottom: 24px;
}
.location-placeholder img {
  width: 46px;
  height: 46px;
}
@media (max-width: 700px) {
  .location-placeholder {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ========================
   FAQ DETAILS
=========================== */
.faq .faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.faq details {
  border: 1px solid #eee;
  border-radius: var(--radius);
  background: var(--accent);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.17s;
}
.faq details[open] {
  box-shadow: 0 7px 26px rgba(149,19,19,0.10);
}
.faq details summary {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  outline: none;
  margin-bottom: 8px;
}
.faq details summary::marker, .faq details summary::-webkit-details-marker {
  display: none;
}

.faq details .text-section {
  margin-left: 0;
}

/* ========================
   LEGAL (Impressum etc.)
=========================== */
.legal .text-section {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-top: 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--secondary);
}
.legal h1, .legal h2 {
  color: var(--primary);
}

/* ========================
   CTA SECTION
=========================== */
.cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 13px rgba(149,19,19,0.06);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}

.cta h2 {
  color: var(--white);
}
.cta .cta-btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  box-shadow: none;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--accent);
  color: var(--primary-dark);
  border: 2px solid var(--accent);
}

/* ========================
   THANK YOU PAGE
=========================== */
.thank-you {
  min-height: 320px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
}
.thank-you h1 {
  color: var(--primary);
  margin-bottom: 14px;
}

/* ========================
   FOOTER
=========================== */
footer {
  background: var(--accent);
  border-top: 1px solid #eaeaea;
  padding: 38px 0 18px 0;
  margin-top: auto;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  margin-bottom: 16px;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 11px;
}
.footer-nav li a {
  color: var(--secondary-light);
  font-family: var(--font-display);
  font-size: 0.98rem;
  padding: 5px 7px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav li a:hover {
  background: var(--primary);
  color: var(--white);
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.96rem;
  margin-top: 9px;
}
.contact-footer strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}
.contact-footer p {
  color: var(--secondary-light);
}
.contact-footer a {
  color: var(--primary);
  text-decoration: underline dotted;
}
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ========================
   SPACING LAYOUT CLASSES
=========================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   RESPONSIVE MOBILE ADJUSTMENTS
=========================== */
@media (max-width: 900px) {
  .feature-grid, .service-grid, .team-member-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .features ul {
    margin-left: 17px;
  }
}
@media (max-width: 800px) {
  .about, .features, .pricing, .services, .steps, .faq, .cta, .legal, .map, .contact, .team, .testimonials, .thank-you, .hero {
    padding: 32px 8px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero {
    padding-top: 28px;
  }
}
@media (max-width: 550px) {
  .about, .features, .pricing, .services, .steps, .faq, .cta, .legal, .map, .contact, .team, .testimonials, .thank-you, .hero {
    padding: 24px 4vw;
    margin-bottom: 36px;
  }
  .cta {
    padding: 30px 4vw;
  }
  h1 {
    font-size: 1.45rem;
  }
}

/* ========================
   GENTLE ANIMATIONS
=========================== */
.cta-btn,
button,
.feature-item,
.service-card,
.team-member,
.testimonial-card,
.faq details {
  transition: box-shadow 0.19s,
              transform 0.17s,
              background 0.18s,
              color 0.18s;
}

/* ========================
   SCROLLBARS (clean/minimal)
=========================== */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--accent);
}
body::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
}

/* ========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2002;
  background: var(--accent);
  box-shadow: 0 -2px 18px rgba(52,58,64,0.07);
  border-top: 1px solid #e2e2e2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  gap: 28px;
  min-height: 60px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.26s, transform 0.32s cubic-bezier(.52,0,.44,1);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-text {
  color: var(--secondary);
  font-size: 1.01rem;
  max-width: 450px;
  margin-right: 10px;
}
.cookie-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-settings-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.56em 1.1em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .97rem;
  margin-left: 0;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 10px rgba(149,19,19,0.07);
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: var(--primary-dark);
}
.cookie-reject-btn {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-reject-btn:focus, .cookie-reject-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-settings-btn {
  background: var(--accent);
  color: var(--secondary);
  border: 1px solid var(--secondary-light);
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #f0f0f0;
  color: var(--primary);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%) scale(1);
  z-index: 2010;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(52,58,64,0.16);
  width: 97vw;
  max-width: 400px;
  padding: 32px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.20s, transform 0.24s cubic-bezier(.78,0,.19,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -35%) scale(0.96);
}
.cookie-modal h2 {
  font-size: 1.16rem;
  color: var(--primary);
  font-weight: 700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 0.5em 1em;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.97rem;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 500;
}
.cookie-categories input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}
.cookie-category-essential {
  opacity: 0.7;
}
.cookie-modal .button-row {
  margin-top: 7px;
}
/* Modal close btn */
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--primary-dark);
}

/* ========================
   Z-INDEX HANDLING
=========================== */
header { z-index: 101; }
.mobile-menu { z-index: 120; }
.mobile-menu-close { z-index: 121; }
.cookie-consent-banner { z-index: 2002; }
.cookie-modal { z-index: 2010; }

/* ========================
   ACCESSIBILITY & OUTLINES
=========================== */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================
   DARKMODE OVERRIDE (if needed in the future)
=========================== */
/*
@media (prefers-color-scheme: dark) {
  body {
    background: #121212;
    color: #ececec;
  }
  .section, .about, .features, .pricing, .services, .steps, .faq, .cta, .legal, .map, .contact, .team, .testimonials, .thank-you, .hero {
    background: #161616;
    color: #ececec;
  }
  .cta {
    background: var(--primary-dark);
    color: var(--white);
  }
  .feature-item, .service-card, .team-member, .testimonial-card, .faq details, .address-block, .location-placeholder, .legal .text-section {
    background: #181818; color: var(--white);
    border: 1px solid #292929;
  }
  .cookie-consent-banner, .cookie-modal {
    background: #1a1a1a; color: #ececec;
  }
}
*/

/* ========================
   FONT IMPORTS (ROBOTO+MONTSERRAT)
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
