/* CSS RESET & NORMALIZE ------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #373A36;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #373A36;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #869D7A;
  outline: none;
}
ul, ol {
  list-style-position: inside;
}

/* BRAND TYPOGRAPHY ----------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #373A36;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
p, li, blockquote {
  font-size: 1rem;
  color: #373A36;
}

blockquote {
  font-style: italic;
  margin-bottom: 10px;
  color: #373A36;
}
cite {
  display: block;
  font-size: 0.95rem;
  color: #869D7A;
}

/* LAYOUT CONTAINERS ----------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(55,58,54,0.06);
}

/* HERO STYLES ----------------------------- */
.hero {
  background: #F5F3EF;
  margin-bottom: 40px;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  font-size: 2.2rem;
  color: #373A36;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 22px;
}

/* FEATURE/CARD LAYOUTS ---------------------- */
.feature-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .card {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px rgba(55,58,54,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  position: relative;
}
.card:hover, .feature-grid li:hover {
  box-shadow: 0 4px 16px 0 rgba(55,58,54,0.16);
}

.card-container {
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
}

.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;
}

.service-highlights, .material-highlights, .design-ideas-list {
  margin-top: 28px;
}
.service-highlights ul, .material-highlights ul, .design-ideas-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-highlights ul li, .material-highlights ul li, .design-ideas-list ul li {
  background: #F5F3EF;
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 0;
  flex: 1 1 200px;
  color: #373A36;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****** TESTIMONIALS ******/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(55,58,54,0.08);
  border-radius: 18px;
  border: 1px solid #F5F3EF;
  max-width: 590px;
  color: #373A36;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px -4px #869d7a22;
}
.testimonial-card blockquote {
  color: #373A36;
  font-size: 1.1rem;
  margin: 0 0 6px 0;
}
.testimonial-card cite {
  color: #869D7A;
  font-size: 0.97rem;
}

/****** CONTACT BLOCKS ******/
.contact-methods ul, .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 20px 0 24px 0;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
}
.contact-methods li img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}
.address-and-hours p {
  margin-bottom: 6px;
  color: #373A36;
}

/****** NAVIGATION / HEADER ******/
header {
  background: #fff;
  border-bottom: 1px solid #F5F3EF;
  box-shadow: 0 2px 8px 0 rgba(55,58,54,0.03);
  width: 100%;
  position: relative;
  z-index: 200;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 32px;
  padding: 14px 20px;
}
header img {
  height: 36px;
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #373A36;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #869D7A;
  border-bottom: 2px solid #869D7A;
  outline: none;
}

.cta.primary, .cta.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 8px;
  padding: 13px 30px;
  min-width: 148px;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
}
.cta.primary {
  color: #fff;
  background: #373A36;
  box-shadow: 0 1px 6px 0 rgba(55,58,54,0.07);
}
.cta.primary:hover, .cta.primary:focus {
  background: #869D7A;
  color: #fff;
  box-shadow: 0 4px 16px -4px #869d7a33;
}
.cta.secondary {
  color: #373A36;
  background: #F5F3EF;
  border: 1px solid #869D7A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #869D7A;
  color: #fff;
}

/* HIDE ON DESKTOP / SHOW ON MOBILE */
.mobile-menu-toggle {
  position: absolute;
  top: 22px;
  right: 24px;
  display: none;
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #373A36;
  cursor: pointer;
  z-index: 302;
  transition: color 0.2s;
  padding: 5px 12px;
  border-radius: 6px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #869D7A;
}

/****** FOOTER ******/
footer {
  border-top: 1px solid #F5F3EF;
  padding: 36px 0 18px 0;
  background: #fff;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
footer nav a {
  color: #373A36;
  font-size: 0.98rem;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
footer nav a:hover {
  color: #869D7A;
  border-bottom: 1.5px solid #869D7A;
}
footer .footer-contact {
  color: #869D7A;
  font-size: 0.96rem;
  text-align: center;
}

/****** MOBILE MENU OVERLAY ******/
.mobile-menu {
  position: fixed;
  z-index: 400;
  top: 0;
  right: 0;
  left: 100vw; /* hidden by default */
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 18px -2px #373A3680;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transition: left 0.36s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu-close {
  margin: 22px 28px 0 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #373A36;
  cursor: pointer;
  outline: none;
  transition: color 0.18s;
  z-index: 412;
}
.mobile-menu-close:focus {
  color: #869D7A;
  outline: 2px solid #869D7A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 38px 38px 36px 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', sans-serif;
  color: #373A36;
  padding: 2px 2px 8px 2px;
  width: 100%;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  min-width: 100px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #869D7A;
  outline: none;
}
body.mobile-menu-open {
  overflow: hidden;
}

/****** COOKIE CONSENT BANNER ******/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #373A36;
  color: #fff;
  padding: 28px 5vw 20px 5vw;
  box-shadow: 0 -3px 20px 0 #373A3622;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-banner-text {
  font-size: 1.04rem;
  text-align: center;
  color: #fff;
  max-width: 620px;
  margin-bottom: 6px;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 2px;
  justify-content: center;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept {
  background: #869D7A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #5E7551;
}
.cookie-btn.reject {
  background: #5E7551;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #373A36;
}
.cookie-btn.settings {
  background: #F5F3EF;
  color: #373A36;
  border: 1.5px solid #869D7A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #869D7A;
  color: #fff;
}

/****** COOKIE SETTINGS MODAL ******/
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2002;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(55,58,54,0.36);
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  position: fixed;
  z-index: 2010;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%) scale(0.98);
  background: #fff;
  color: #373A36;
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 12px 60px -12px #373A36aa;
  padding: 36px 28px 28px 28px;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.68,-0.5,.35,1.5), opacity 0.32s;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%, -56%) scale(0.89);
  pointer-events: none;
}
.cookie-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
}
.cookie-modal-category label {
  font-size: 1.05rem;
  color: #373A36;
}
.cookie-modal-category input[type=checkbox][disabled] {
  accent-color: #869D7A;
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: #869D7A;
  transform: scale(1.3);
  margin-right: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #869D7A;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:focus {
  color: #373A36;
  outline: 1.5px solid #869D7A;
}

/****** GENERIC FORMS/INPUTS ******/
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 14px;
  border: 1px solid #E2E2E0;
  border-radius: 7px;
  margin-bottom: 16px;
  outline: none;
  background: #fff;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  border: 1.5px solid #869D7A;
}

/****** RESPONSIVE DESIGN ******/
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    max-width: 96vw;
  }
  .card-container, .feature-grid, .service-highlights ul, .material-highlights ul, .design-ideas-list ul,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 98%;
  }
  .section {
    margin-bottom: 40px;
    padding: 26px 6px;
  }
  .hero {
    padding: 34px 0 28px 0;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .footer .footer-contact {
    font-size: 0.94rem;
  }
  .feature-grid, .card-container, .service-highlights ul, .material-highlights ul, .design-ideas-list ul {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 14px 8px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 9px 8px;
  }
  
  /* Hide desktop nav, show burger */
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .content-wrapper {
    padding-left: 2vw; padding-right: 2vw;
  }
  .hero {
    padding: 20px 0 9px 0;
  }
  .section {
    padding: 14px 4px;
  }
  .card, .feature-grid li {
    padding: 12px 9px;
  }
  .cookie-banner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .cookie-modal {
    padding: 24px 8px 18px 8px;
  }
}
/****** FLEXBOX ALIGNMENT FOR TABLES & WRAPPERS ******/
.table-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/****** OTHER MICRO-INTERACTIONS ******/
button:active, .cta:active {
  transform: scale(0.98);
}

/****** HIGHLIGHTED ELEMENTS, SECTIONS, AND SPACING ******/
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 18px;
  margin-top: 6px;
}

li + li {
  margin-top: 8px;
}

strong {
  font-weight: 600;
  color: #373A36;
}

hr {
  border: none;
  border-top: 1px solid #F5F3EF;
  margin: 38px auto 28px auto;
}

/***** UTILITY CLASSES *****/
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center !important; }

/***** PREVENT ABSOLUTE OVERLAPS for content *****/
.card, .section, .testimonial-card, .feature-grid li, .service-highlights ul li, .card-container .card {
  position: relative;
  z-index: 1;
}

/**********************************************************/
/***** END OF MINIMALIST FLEXBOX CSS for FUNKELWERK ******/
/**********************************************************/
