/* -------------------- CSS RESET & BASE ---------------------- */
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, menu, 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,
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure,  footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  color: #23513D;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
audible, [hidden], template { display: none; }
a { color: inherit; text-decoration: none; transition: color .24s cubic-bezier(.4,0,.2,1); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; margin-bottom: 16px; }
h1 { font-size: 2.75rem; letter-spacing: 0.01em; line-height: 1.18; }
h2 { font-size: 2rem; margin-top: 24px; }
h3 { font-size: 1.25rem; margin-top: 20px; }
h4 { font-size: 1.1rem; }
p, li, span, label { font-family: 'Roboto', Arial, sans-serif; font-size: 1.06rem; line-height: 1.7; color: #23513D; }
strong { font-weight: 600; }
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.text-section { margin-bottom: 16px; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border: 1.5px solid #E5E1DA;
  border-radius: 18px;
  box-shadow: 0 2px 11px rgba(35,81,61,0.08);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
}
.card:hover, .feature:hover {
  box-shadow: 0 6px 20px 0 rgba(35,81,61,0.11);
  transform: translateY(-2px) scale(1.014);
}

.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;
}
.testimonials-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border: 2.2px solid #E5E1DA;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(35,81,61,0.07);
  min-width: 250px;
  max-width: 375px;
  margin-bottom: 20px;
  color: #23513D;
  font-size: 1.09rem;
  transition: box-shadow .23s cubic-bezier(.4,0,.2,1), border-color .19s cubic-bezier(.4,0,.2,1);
}
.testimonial-card p {
  color: #122b21;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card span {
  color: #23513D;
  font-size: .98rem;
  font-style: italic;
  border-left: 4px solid #A05E00;
  padding-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: #FFFFFF;
  border-bottom: 2px solid #E5E1DA;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #23513D;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color .18s cubic-bezier(.4,0,.2,1), color .18s cubic-bezier(.4,0,.2,1);
}
.main-nav a.active,
.main-nav a:focus,
.main-nav a:hover {
  border-bottom-color: #B98536;
  color: #B98536;
}
.cta.primary, .cta.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 28px;
  border-radius: 24px 4px 24px 4px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px 0 rgba(35,81,61,0.08);
  border: 2px solid transparent;
  transition: background .18s, box-shadow .18s, color .18s, border .16s;
  cursor: pointer;
}
.cta.primary {
  background: #23513D;
  color: #fff;
  border-color: #23513D;
}
.cta.primary:hover, .cta.primary:focus {
  background: #B98536;
  color: #fff;
  border-color: #B98536;
  box-shadow: 0 4px 16px rgba(160,94,0,0.11);
}
.cta.secondary {
  background: #fff;
  color: #B98536;
  border: 2px solid #B98536;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #B98536;
  color: #fff;
  border-color: #B98536;
  box-shadow: 0 4px 16px rgba(160,94,0,0.11);
}

/* --- Hamburger Mobile Toggle --- */
.mobile-menu-toggle {
  display: none;
  background: #23513D;
  color: #fff;
  font-size: 2.35rem;
  border: none;
  border-radius: 7px;
  padding: 6px 18px;
  margin-left: 20px;
  cursor: pointer;
  transition: background .18s;
  z-index: 1001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #B98536;
  color: #fff;
}

/* -------------------- MOBILE MENU -------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23513D;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
  box-shadow: 0 0 60px 0 rgba(35,81,61,0.20);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 25px 26px 0 0;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B98536;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: flex-start;
  gap: 10px;
  padding: 46px 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  padding: 15px 0 12px 0;
  width: 100%;
  border-bottom: 2.5px solid transparent;
  border-radius: 0 0 8px 0;
  transition: background .16s, color .16s, border .16s;
}
.mobile-nav a.cta.primary {
  margin-top: 14px;
  background: #B98536;
  color: #fff;
  border-radius: 18px 4px 18px 4px;
  padding: 13px 28px;
  font-size: 1.12rem;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #B98536;
  color: #fff;
}

/* -------------------- HERO & CTA STRIPS -------------------- */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #E5E1DA;
  border-radius: 22px 7px 17px 7px;
  gap: 28px;
  padding: 24px 24px;
  margin: 20px 0 0 0;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(160,94,0,0.09);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-strip .cta {
  margin-left: auto;
}

/* -------------------- FEATURES & CARDS -------------------- */
.features-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature {
  background: #fff;
  border-radius: 18px 4px 18px 4px;
  border: 2px solid #E5E1DA;
  box-shadow: 0 2px 10px rgba(35,81,61,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 22px 24px 22px;
  min-width: 220px;
  max-width: 300px;
  transition: box-shadow .22s, border .20s;
  margin-bottom: 20px;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.16rem;
  color: #23513D;
  margin-bottom: 8px;
}
.feature p {
  color: #23513D;
  font-size: 1.01rem;
  margin-bottom: 0;
}

/* ----- Project / Reference list ----- */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.project {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 2px solid #E5E1DA;
  border-radius: 15px;
  padding: 28px 20px;
  min-width: 250px;
  max-width: 400px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(35,81,61,0.11);
}

.style-trends, .usps, .service-list, .benefits, .process-steps {
  margin: 20px 0;
}
.style-trends li, .usps li, .service-list li, .benefits li, .process-steps li {
  position: relative;
  font-size: 1.03rem;
  padding-left: 29px;
  margin-bottom: 12px;
  color: #23513D; 
  font-family: 'Roboto', Arial, sans-serif;
}
.style-trends li:before { content: "◆"; color: #B98536; font-size: 1.11rem; position: absolute; left: 1px; top: 0; }
.usps li:before {
  content: "✔";
  color: #23513D;
  font-size: 1.01rem;
  position: absolute;
  left: 0;
  top: 0.5px;
}
.benefits li:before {
  content: "●";
  color: #B98536;
  font-size: 1.18rem;
  position: absolute;
  left: 3px;
  top: 0;
}
.service-list li:before {
  content: "■";
  color: #23513D;
  font-size: 1rem;
  position: absolute;
  left: 1px;
  top: 0;
}
.process-steps li {
  counter-increment: steps;
  padding-left: 36px;
  margin-bottom: 18px;
}
.process-steps li:before {
  content: counter(steps) ".";
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #B98536;
  font-size: 1.18rem;
  left: 2px;
  position: absolute;
  top: 0;
}
.process-steps {
  counter-reset: steps;
  margin-bottom: 14px;
}

.location-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 1rem;
  color: #23513D;
}
.location-map img { width: 34px; height: 34px; }

/* -------------------- FOOTER -------------------- */
footer {
  background: #E5E1DA;
  border-top: 3px solid #B98536;
  padding: 36px 0 18px 0;
  font-size: 1rem;
  margin-top: 42px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
.footer-contact p { margin-bottom: 10px; color: #23513D; font-size: 1rem; }
footer .logo img {
  width: 36px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a {
  color: #23513D;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  transition: color .15s;
}
.footer-nav a:hover { color: #B98536; }
.footer-contact a {
  color: #A05E00;
  font-weight: 500;
  transition: color .15s;
}
.footer-contact a:hover, .footer-contact a:focus { color: #B98536; text-decoration: underline; }

/* ----------------------- FORMS -------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid #E5E1DA;
  border-radius: 8px 8px 8px 2px;
  outline: none;
  width: 100%;
  margin-bottom: 16px;
  background: #fff;
  color: #23513D;
  transition: border .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B98536;
}
button, input[type=submit], input[type=button], .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  border-radius: 22px 4px 22px 4px;
  border: 2px solid #23513D;
  background: #23513D;
  color: #fff;
  padding: 12px 32px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0;
  transition: background .18s, color .18s, border .18s;
}
button:hover, .btn:hover, input[type=submit]:hover {
  background: #B98536;
  border-color: #B98536;
}

/* -------------------- COOKIE BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  color: #23513D;
  border-top: 2.5px solid #B98536;
  box-shadow: 0 -3px 22px rgba(35,81,61,0.12);
  padding: 28px 16px 18px 16px;
  z-index: 9900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: bottom 0.22s;
}
.cookie-banner .cookie-message { max-width: 540px; }
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  border-radius: 18px 4px 18px 4px;
  border: 2px solid #23513D;
  color: #fff;
  padding: 10px 22px;
  margin: 0 0 0 0;
  background: #23513D;
  transition: background .18s, color .18s, border .18s;
  cursor: pointer;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #B98536;
  border-color: #B98536;
}
.cookie-banner button.secondary {
  background: #fff;
  color: #23513D;
  border-color: #B98536;
}
.cookie-banner button.secondary:hover,
.cookie-banner button.secondary:focus {
  background: #B98536;
  color: #fff;
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(35,81,61,0.57);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  max-width: 370px;
  padding: 34px 28px 28px 28px;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 12px 32px rgba(35,81,61,0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  margin-bottom: 4px; font-size: 1.28rem;
  color: #23513D;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #B98536;
  width: 18px; height: 18px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #23513D;
}
.cookie-category.essential label:after {
  content: '(immer aktiviert)';
  font-size: 0.94rem;
  color: #A05E00;
  margin-left: 7px;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal button {
  min-width: 80px;
}

/* ---- Utility ---- */
.hide { display: none !important; }

/* ----------- MEDIA QUERIES (Responsive) ----------- */
@media (max-width: 1160px) {
  .container {
    max-width: 100%;
    padding: 0 6vw;
  }
}
@media (max-width: 900px) {
  .features-grid, .testimonials-preview, .card-container, .project-list, .footer-nav, footer .container {
    gap: 18px;
  }
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features-grid, .testimonials-preview, .card-container, .project-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature,
  .project,
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
  }
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px 20px 18px;
  }
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer .logo img {
    width: 38px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 10px 14px 10px;
    font-size: .98rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .feature h3 { font-size: 1.04rem; }
  .section { padding: 30px 4vw; }
  .card { padding: 18px 8px; }
  .testimonial-card { padding: 14px 8px; }
  .footer-nav { margin-left: 0; }
}

/*  -------- Custom scrollbars for modern look (if supported) -------- */
body::-webkit-scrollbar {
  width: 9px;
  background: #E5E1DA;
}
body::-webkit-scrollbar-thumb {
  background: #B98536;
  border-radius: 7px;
}

/* --------------- GEOMETRIC STRUCTURED DECOR --------------- */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 18px;
  right: 18px;
  background: #E5E1DA;
  border-radius: 9px 20px 9px 0;
  z-index: 0;
  opacity: 0.33;
}
.section:nth-child(even):before { left: 16px; right: auto; }
.section .content-wrapper { position: relative; z-index: 1; }

/* --- Geometric buttons effect (animated border) --- */
.cta, .cookie-banner button, .cookie-modal button, button, .btn {
  position: relative;
  overflow: hidden;
}
.cta:after, .cookie-banner button:after, .cookie-modal button:after, button:after, .btn:after {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 0; height: 100%;
  background: rgba(160,94,0,0.13);
  z-index: 0;
  transition: width .33s cubic-bezier(.7,0,.2,1);
  pointer-events: none;
}
.cta:active:after, .cookie-banner button:active:after, .cookie-modal button:active:after, button:active:after, .btn:active:after {
  width: 100%;
}

/* -- Remove autofill yellow bg on chrome -- */
input:-webkit-autofill, input:-webkit-autofill:active, input:-webkit-autofill:focus, input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
  box-shadow: 0 0 0 30px #fff inset !important;
  -webkit-text-fill-color: #23513D !important;
}

/* ----------------- END OF STYLE.CSS ----------------- */
