/* Reset & Normalize (based on modern-normalize) */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; font-family: 'Open Sans', Arial, sans-serif; color: #222; background: #F4F5F7; line-height: 1.6; -webkit-font-smoothing: antialiased; font-size: 16px; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: #314154; text-decoration: underline; transition: color .2s; }
a:hover, a:focus { color: #CFA66B; }
ul, ol { padding-left: 24px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; color: #314154; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
h1 { font-size: 2.75rem; margin-top: 0; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p { margin-bottom: 16px; }
strong { font-weight: 700; }
section { margin-bottom: 60px; padding: 40px 0 40px 0; background: none; }
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/****************************
 * HEADER & NAVIGATION
 ****************************/
header {
  background: #fff;
  border-bottom: 4px solid #CFA66B;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
}
header img {
  height: 52px;
  max-width: 170px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #314154;
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s, background .2s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active {
  color: #CFA66B;
  border-bottom: 2px solid #CFA66B;
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #CFA66B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px 0 rgba(49,65,84, 0.11);
  text-decoration: none;
  margin-left: 12px;
  transition: background .18s, box-shadow .24s, transform .21s;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #314154;
  color: #fff;
  box-shadow: 0 8px 30px 0 rgba(49,65,84, 0.14);
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #314154;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 32px;
  border: 2px solid #CFA66B;
  padding: 12px 28px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: background .18s, color .18s, border .18s, box-shadow .21s;
  box-shadow: 0 2px 10px 0 rgba(49,65,84, 0.07);
  margin-left: 12px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #CFA66B;
  color: #fff;
  border-color: #CFA66B;
  box-shadow: 0 8px 26px 0 rgba(207,166,107,0.15);
}

/*************************
 * BURGER MOBILE MENU
 *************************/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: #fff;
  border: 2px solid #CFA66B;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: #CFA66B;
  align-items: center;
  justify-content: center;
  z-index: 201;
  transition: border .2s, background .18s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  border-color: #314154;
  background: #CFA66B;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #314154;
  color: #fff;
  z-index: 200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 24px 12px 0;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #CFA66B;
  cursor: pointer;
  transition: color .16s, transform .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #fff; transform: scale(1.08); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 0;
  transition: color .16s, background .18s;
  width: 75vw;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CFA66B;
  background: rgba(255,255,255,0.07);
  border-bottom: 2px solid #CFA66B;
}

/************************************
* HERO / BANNERS / CALL TO ACTIONS
************************************/
.hero,
.about-hero,
.services-hero,
.projects-hero,
.raumkonzepte-hero,
.blog-hero,
.contact-hero,
.thank-you-message {
  background: #314154;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 30px 0 rgba(49,65,84, 0.09);
  margin-bottom: 64px;
  padding-bottom: 60px;
  position: relative;
}
.hero .container,.about-hero .container, .services-hero .container, .projects-hero .container, .raumkonzepte-hero .container, .blog-hero .container, .contact-hero .container {
  justify-content: flex-start;
}
.hero h1, .about-hero h1, .services-hero h1, .projects-hero h1, .raumkonzepte-hero h1, .blog-hero h1, .contact-hero h1, .thank-you-message h1 {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 3px 24px rgba(49,65,84,0.18);
}
.hero p, .about-hero p, .services-hero p, .projects-hero p, .raumkonzepte-hero p, .blog-hero p, .contact-hero p, .thank-you-message p {
  color: #F4F5F7;
  font-size: 1.25rem;
  font-weight: 500;
}
.cta-banner, .cta-card, .thank-you-cta, .newsletter-signup {
  background: #fff;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(49,65,84,0.07);
  margin-bottom: 60px;
  padding: 40px 0 32px 0;
}
.cta-banner h2, .cta-card h2, .thank-you-cta h2, .newsletter-signup h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #314154;
}
.cta-card .cta, .thank-you-cta .cta, .newsletter-signup .cta {
  margin-top: 12px;
}
.thank-you-cta .cta:first-child { margin-right: 16px; }

/**************************
 * FLEX CONTENT PATTERNS
 **************************/
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 24px 0 rgba(49,65,84,0.06);
  padding: 46px 0 32px 0;
  margin-bottom: 64px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  background: #F4F5F7;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(49,65,84, 0.08);
  padding: 28px 24px 22px 24px;
  gap: 15px;
  flex: 1 1 260px;
  max-width: 320px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  display: block;
}
.feature-item h3 {
  color: #314154;
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}
.feature-item p {
  color: #222;
  font-size: 1rem;
}
.feature-item a {
  font-size: .98rem;
  color: #CFA66B;
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: 0.01em;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0 rgba(207,166,107, 0.18);
  transform: translateY(-4px) scale(1.025);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(49,65,84, 0.08);
  transition: box-shadow .17s, transform .18s;
  padding: 28px 24px;
}
.card:hover { box-shadow: 0 8px 36px 0 rgba(207,166,107,0.10); transform: translateY(-3px) scale(1.014); }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*********************************
 * TESTIMONIALS / SLIDER CARDS
 *********************************/
.testimonials {
  margin-top: 44px;
  background: #F4F5F7;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(49,65,84,0.04);
  padding: 40px 0 40px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 18px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 300px;
  box-shadow: 0 4px 20px 0 rgba(49,65,84,0.07);
  transition: box-shadow .17s, transform .16s;
  color: #222;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.1px;
  color: #314154;
}
.testimonial-card strong {
  color: #CFA66B;
  font-size: 1rem;
  font-style: italic;
  font-weight: 800;
}
.testimonial-card:hover { box-shadow: 0 10px 36px 0 rgba(207,166,107,0.13); transform: translateY(-3px) scale(1.01); }

/************************************
 * BLOG TEASERS, CARDS, HIGHLIGHTS
 ************************************/
.blog-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.blog-teaser {
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 360px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(49,65,84,0.06);
  padding: 24px 22px 21px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .14s, transform .11s;
}
.blog-teaser:hover, .blog-teaser:focus {
  box-shadow: 0 8px 30px 0 rgba(207,166,107,0.14);
  transform: translateY(-3px) scale(1.012);
}

/**************************************
 * FOOTER
 **************************************/
footer {
  background: #314154;
  color: #fff;
  padding: 40px 0 34px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 30px 0 rgba(49,65,84,0.10);
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.footer-brand img { height: 48px; width: 48px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  min-width: 190px;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.92;
  transition: color .16s, opacity .18s;
}
.footer-links a:hover, .footer-links a:focus { color: #CFA66B; opacity: 1; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  min-width: 220px;
}
.footer-contact a { color: #CFA66B; text-decoration: underline; font-weight: 700; }

/************************
 * SIMPLE LISTS/TEXT
 ************************/
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/*********************************************
 * SERVICE-LIST / CARDS & HIGHLIGHTS
 ********************************************/
.services-list .service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.services-list .service-overview li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(49,65,84,0.08);
  padding: 28px 24px 24px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.05rem;
  transition: box-shadow .15s, transform .13s;
}
.services-list .service-overview li:hover {
  box-shadow: 0 8px 32px 0 rgba(207,166,107,0.18);
  transform: translateY(-2px) scale(1.021);
}
.services-list .service-overview h3 { color: #314154; }
.services-list .service-overview strong { color: #CFA66B; font-size: 1rem; }

/***************************
 * POLICY, LISTS, TYPEDOCS
 ***************************/
.privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(49,65,84,0.06);
  padding: 44px 0 44px 0;
}
.privacy-policy h1, .gdpr h1, .cookie-policy h1, .terms-of-use h1 {
  color: #314154;
  font-size: 2rem;
  margin-bottom: 14px;
}
.privacy-policy h2, .gdpr h2, .cookie-policy h2, .terms-of-use h2 {
  color: #CFA66B;
  margin-top: 24px;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.privacy-policy ul, .gdpr ul, .cookie-policy ul, .terms-of-use ul {
  margin-bottom: 15px;
}

/*****************
 * MISC SECTION
 *****************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/************************
 * COOKIE CONSENT BANNER
 ************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 302;
  background: #314154;
  color: #fff;
  box-shadow: 0 -2px 24px 0 rgba(49,65,84,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  gap: 16px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 32px 32px 0 0;
  animation: cookie-slidein .55s cubic-bezier(.35,.9,.35,1.36);
}
@keyframes cookie-slidein {
  from {transform: translateY(120%); opacity:0;}
  to {transform: none; opacity:1;}
}
.cookie-banner__msg {
  flex: 1 1 360px;
  font-size: 1.05rem;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin: 0;
  padding: 11px 26px;
  cursor: pointer;
  transition: background .14s, color .13s, box-shadow .17s;
  box-shadow: 0 2px 10px 0 rgba(49,65,84, 0.09);
}
.cookie-banner .cookie-btn.accept {
  background: #CFA66B;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #fff;
  color: #CFA66B;
  border: 2px solid #CFA66B;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #314154;
  border: 2px solid #314154;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #CFA66B;
  color: #fff;
  border: 2px solid #CFA66B;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #CFA66B;
  border: 2px solid #CFA66B;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #CFA66B;
  color: #fff;
}

/******************************
 * COOKIE PREFERENCES MODAL
 ******************************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(49,65,84,0.76);
  z-index: 303;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal .32s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fade-in-modal {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #314154;
  border-radius: 18px;
  max-width: 400px;
  width: 90vw;
  box-shadow: 0 6px 30px 0 rgba(49,65,84,0.12);
  padding: 34px 32px 22px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-slidein .29s cubic-bezier(.45,.7,.23,1.13);
}
@keyframes modal-slidein {
  from {transform: scale(.9) translateY(48px); opacity:0;}
  to {transform: none; opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.4rem;
  color: #314154;
  margin-bottom: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: #CFA66B;
  cursor: pointer;
  z-index: 2;
  transition: color .15s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus { color: #314154; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
}
.cookie-category label {
  font-weight: 700;
}
.cookie-category input[type=checkbox] {
  accent-color: #CFA66B;
  width: 22px; height: 22px;
  margin-left: 8px;
}
.cookie-modal .cookie-category.essential label:after {
  content: ' (immer aktiv)';
  color: #CFA66B;
  margin-left: 4px;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin: 0;
  padding: 11px 26px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(49,65,84, 0.08);
  transition: background .14s, color .12s;
}
.cookie-modal .cookie-btn.save {
  background: #CFA66B;
  color: #fff;
}
.cookie-modal .cookie-btn.save:hover, .cookie-modal .cookie-btn.save:focus {
  background: #314154;
  color: #fff;
}
.cookie-modal .cookie-btn.cancel {
  background: #fff;
  color: #314154;
  border: 2px solid #314154;
}
.cookie-modal .cookie-btn.cancel:hover, .cookie-modal .cookie-btn.cancel:focus{
  background: #CFA66B;
  color: #fff;
}

/********************************************
 * RESPONSIVE DESIGN (Mobile First)
 ********************************************/
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  nav { gap: 18px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  header .container {
    flex-direction: row;
    padding: 10px 12px;
  }
  nav { display: none; }
  .cta.primary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .container { padding: 0 10px; }
  .section { padding: 32px 8px; }

  /* HERO */
  .hero, .about-hero, .services-hero, .projects-hero, .raumkonzepte-hero, .blog-hero, .contact-hero, .thank-you-message {
    padding-bottom: 36px;
    border-radius: 0 0 24px 24px;
  }
  .hero h1, .about-hero h1, .services-hero h1, .projects-hero h1, .raumkonzepte-hero h1, .blog-hero h1, .contact-hero h1, .thank-you-message h1 {
    font-size: 1.56rem;
    margin-bottom: 17px;
  }
  .hero p, .about-hero p, .services-hero p, .projects-hero p, .raumkonzepte-hero p, .blog-hero p, .contact-hero p, .thank-you-message p {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  /* FLEX CONTAINERS */
  .feature-grid, .blog-teaser-list, .services-list .service-overview, .blog-teaser-list, .card-container, .testimonial-slider {
    flex-direction: column;
    gap: 17px;
  }
  .features { padding: 24px 8px; }
  .feature-item, .blog-teaser, .services-list .service-overview li, .testimonial-card, .card {
    min-width: unset;
    max-width: 97vw;
    width: 100%;
    margin-bottom: 10px;
  }
  .testimonial-card { padding: 16px 14px; }
  .footer-brand { font-size: 0.99rem; }
  .footer-brand img { height: 38px; width: 38px; }
  .footer-links, .footer-contact { font-size: .95rem; }
  footer .container { gap: 18px; }
}
@media (max-width: 500px) {
  .hero, .about-hero, .services-hero, .projects-hero, .raumkonzepte-hero, .blog-hero, .contact-hero, .thank-you-message {
    border-radius: 0 0 12px 12px;
    padding-bottom: 22px;
  }
  .cta-banner, .cta-card, .thank-you-cta, .newsletter-signup {
    padding: 24px 0 18px 0;
    border-radius: 9px;
  }
  .cookie-banner {
    padding: 18px 6px 16px 8px;
    border-radius: 22px 22px 0 0;
    font-size: 0.99rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/*********************
 * OTHERS - DETAILS
 *********************/
::-webkit-input-placeholder { color: #afb3bc; }
::-moz-placeholder { color: #afb3bc; }
:-ms-input-placeholder { color: #afb3bc; }
::placeholder { color: #afb3bc; }

/*****************************************
 * GEOMETRIC DECORATIVE ELEMENTS (Example)
 *****************************************/
.hero::after,
.cta-banner::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 10%;
  width: 110px;
  height: 110px;
  background: #CFA66B;
  opacity: 0.08;
  border-radius: 40% 75% 44% 62%/60% 38% 75% 44%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero::after, .cta-banner::before { display: none !important; }
}

/**********************
 * ANIMATION HELPERS
 **********************/
.fade-in {
  animation: fade-in .24s ease-in;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*******************************
 * FOCUS ACCESSIBILITY STYLES  *
 *******************************/
a:focus-visible, .cta.primary:focus-visible, .cta.secondary:focus-visible, .mobile-menu-close:focus-visible {
  outline: 3px solid #CFA66B;
  outline-offset: 2px;
}

/**************************************************
 * PRINT (hide navigation, banners for print)
 **************************************************/
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cta-banner, .cta, .newsletter-signup { display: none !important; }
  section, .container { box-shadow: none !important; background: none !important; }
}

/* Ensure minimum spacing everywhere */
section, .card, .testimonial-card, .feature-item, .blog-teaser, .services-list .service-overview li {
  margin-bottom: 20px;
}
.content-grid, .text-image-section, .testimonial-slider, .card-container, .feature-grid, .blog-teaser-list {
  gap: 20px;
}

/***********************
 * END RAUMHAFEN CSS   *
 ***********************/
