/* ----------------------------
   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, 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background-color: #191C1A;
  color: #F2F4EC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #85B758;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #F2F4EC;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #A0A09D;
}
/* ----------------------------
   TYPOGRAPHY
---------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Roboto Slab', serif;
  font-weight: 800;
  color: #F2F4EC;
  margin-bottom: 16px;
  letter-spacing: 0.7px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #111713, 0 2px 12px rgba(0,0,0,0.33);
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #85B758;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  color: #A0A09D;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #F2F4EC;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  color: #E6EEE2;
}
.text-section {
  max-width: 680px;
  margin: 0 auto;
}
/* ----------------------------
   CONTAINERS & SECTIONS
---------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(33, 42, 38, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(22, 28, 21, 0.27), 0 1.5px 3px rgba(110,124,103,0.03);
}
main > section {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background-color: #232825;
  border: 1.5px solid #393E37;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(10,20,26,0.11);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s cubic-bezier(0.4,0,0.2,1), transform 0.16s cubic-bezier(0.4,0,0.2,1);
  padding: 26px 20px;
  min-width: 240px;
  max-width: 360px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 36px 0 rgba(68, 82, 60, 0.37);
  transform: translateY(-6px) scale(1.01);
  border-color: #627158;
  z-index: 2;
}
.section .card {
  background-color: #242C25;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 32px 7px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .card {
    min-width: 180px;
    padding: 17px 10px;
  }
}
/* ----------------------------
   NAVIGATION (DESKTOP & MOBILE)
---------------------------- */
header {
  width: 100%;
  background-color: #1B221B;
  box-shadow: 0 2px 28px 0 rgba(20,30,18,0.18);
  position: relative;
  z-index: 50;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  height: 74px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 27px;
  list-style: none;
  margin: 0;
}
header nav ul li a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #E8EEDA;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 3px 6px 2px 6px;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  color: #A1B484;
  background: #232825;
}
header nav a img {
  height: 34px;
  filter: brightness(1.15) drop-shadow(0 1px 1px #28372c60);
  margin-right: 10px;
}
.cta {
  background-color: #215731;
  color: #F2F4EC;
  font-family: 'Lora', serif;
  font-weight: 600;
  letter-spacing: 0.13em;
  border-radius: 24px;
  padding: 11px 30px;
  border: none;
  text-decoration: none;
  font-size: 1.08rem;
  margin-left: 18px;
  box-shadow: 0 1.5px 10px 0 rgba(78,97,73,0.13);
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s cubic-bezier(.4,0,.2,1), color 0.14s cubic-bezier(.4,0,.2,1), box-shadow 0.17s;
}
.cta:hover,
.cta:focus {
  background-color: #3C753E;
  color: #E4F1C3;
  box-shadow: 0 6px 30px 0 rgba(91, 147, 86, 0.22);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  background: #232825;
  border: none;
  color: #F2F4EC;
  font-size: 2.2rem;
  padding: 4px 14px 4px 10px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 1200;
  box-shadow: 0 2px 11px rgba(18,27,22,0.17);
  transition: background 0.16s, color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #364035;
  color: #85B758;
}
@media (max-width: 1024px) {
  header nav {
    gap: 9px;
  }
  header nav ul {
    gap: 14px;
  }
  .cta {
    margin-left: 6px;
    padding: 9px 18px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 820px) {
  header nav ul,
  header nav .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    padding-right: 48px;
  }
}
/* --- Mobile Slide-in Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,42,38,0.98);
  box-shadow: 12px 0 64px 0 rgba(20, 30, 18, 0.18);
  display: flex;
  flex-direction: column;
  z-index: 1500;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(0.45,0,0.15,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F2F4EC;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 23px 24px 6px 0;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1600;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #85B758;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 30px;
  gap: 14px;
}
.mobile-nav a {
  color: #F2F4EC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  text-transform: none;
  letter-spacing: 0.06em;
  border-radius: 7px;
  padding: 12px 10px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232825;
  color: #85B758;
  outline: none;
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}
/* ----------------------------
   FOOTER
---------------------------- */
footer {
  background: #151C14;
  color: #A0A09D;
  font-size: 0.96rem;
  padding: 0;
  margin-top: 38px;
  border-top: 2px solid #242C25;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 32px 0 20px 0;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 8px;
}
footer nav a {
  color: #A0A09D;
  font-size: 0.99em;
  letter-spacing: 0.05em;
  transition: color 0.16s;
}
footer nav a:hover,footer nav a:focus {
  color: #F2F4EC;
  outline: none;
}
footer p {
  margin: 0;
  color: #91A689;
}
@media (max-width: 750px) {
  footer .content-wrapper {
    padding: 22px 0 17px 0;
    gap: 8px;
  }
  footer nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}
/* ----------------------------
   LISTS WITH ICONS
---------------------------- */
ul li img {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  margin-right: 13px;
  filter: brightness(1.13) grayscale(0.18) drop-shadow(0 2px 2px #18220d19);
}
ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07em;
  line-height: 1.6;
  color: #E6EEE2;
  background: none;
  border: none;
  border-radius: 0;
}
@media (max-width: 600px) {
  ul li img {
    width: 22px;
    margin-right: 7px;
  }
  ul li {
    font-size: 0.97em;
    gap: 6px;
  }
}
/* ----------------------------
   TESTIMONIALS
---------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F2F4EC;
  color: #215731;
  border-radius: 12px;
  box-shadow: 0 3px 24px rgba(35, 54, 24, 0.14), 0 0.5px 2px rgba(110,124,103,0.05);
  padding: 20px;
  margin-bottom: 20px;
  gap: 8px;
  min-width: 210px;
  max-width: 600px;
  font-size: 1.05em;
  border-left: 6px solid #85B758;
}
.testimonial-card p {
  color: #215731;
  font-family: 'Lora', serif;
  margin-bottom: 9px;
  font-style: italic;
}
.testimonial-card strong {
  color: #3C753E;
  font-size: 1em;
  margin-top: 5px;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px 9px;
    font-size: 0.96em;
    margin-bottom: 17px;
  }
}
/* ----------------------------
   BUTTONS & INTERACTIVES
---------------------------- */
button, .cta {
  cursor: pointer;
  outline: none;
  transition: background 0.14s cubic-bezier(.4,0,.2,1), color 0.13s cubic-bezier(.4,0,.2,1), box-shadow 0.15s;
}
button {
  font-family: 'Roboto', Arial, sans-serif;
}
.card a, .section a:not(.cta), .content-wrapper a:not(.cta) {
  color: #85B758;
  border-bottom: 1.5px solid #393E37;
  font-weight: 500;
  text-decoration: none;
}
.card a:hover, .section a:not(.cta):hover, .content-wrapper a:not(.cta):hover {
  color: #F2F4EC;
  border-color: #627158;
}
/* ----------------------------
   ICONS STYLE
---------------------------- */
.section img[alt^='Telefon'],
.section img[alt^='E-Mail'],
.section img[alt^='Adresse'],
.section img[alt^='Location'] {
  width: 18px;
  margin-right: 6px;
  vertical-align: text-bottom;
  filter: brightness(1.05) grayscale(0.2) drop-shadow(0 1px 1px #11572322);
}
/* ----------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232825;
  color: #F2F4EC;
  border-top: 2px solid #393E37;
  z-index: 2140;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 20px 30px;
  box-shadow: 0 -2px 18px 0 rgba(12,20,14,0.13);
  transition: transform 0.28s cubic-bezier(.45,0,.15,1),opacity 0.22s;
}
.cookie-banner.hidden {
  transform: translateY(180%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1.07em;
  color: #E6EEE2;
  max-width: 660px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  border: none;
  margin: 0 0 0 0;
  background: #393E37;
  color: #F2F4EC;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.cookie-banner button.accept {
  background: #215731;
  color: #F2F4EC;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #3C753E;
}
.cookie-banner button.reject {
  background: #8E4037;
  color: #F2F4EC;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #b75e50;
}
.cookie-banner button.settings {
  background: #454947;
  color: #E6EEE2;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #627158;
  color: #F2F4EC;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 14px 9px;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    gap: 7px;
    flex-wrap: wrap;
  }
}
/* --- Cookie Modal --- */
.cookie-modal__overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,42,38,0.73);
  z-index: 2210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal__overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #191C1A;
  color: #F2F4EC;
  padding: 34px 28px 22px 28px;
  border-radius: 17px;
  box-shadow: 0 2px 26px rgba(68, 82, 60, 0.22);
  max-width: 95vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  z-index: 2215;
}
.cookie-modal__header {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: #E6EEE2;
}
.cookie-modal__categories {
  margin: 14px 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #242C25;
  border-radius: 7px;
  padding: 11px 15px;
}
.cookie-modal__category label {
  font-size: 1.07em;
  color: #E6EEE2;
}
.cookie-modal__category input[type='checkbox'] {
  accent-color: #85B758;
  width: 22px;
  height: 22px;
  margin-left: 11px;
}
.cookie-modal__category .essential {
  color: #85B758;
  font-weight: bold;
  font-size: 1em;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-modal__close {
  position: absolute;
  right: 12px;
  top: 13px;
  background: none;
  border: none;
  color: #627158;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #85B758;
  outline: none;
}
.cookie-modal__actions button {
  padding: 8px 17px;
  border-radius: 8px;
  border: none;
  font-size: 1.04rem;
}
.cookie-modal__actions button.save {
  background: #215731;
  color: #F2F4EC;
}
.cookie-modal__actions button.save:hover {
  background: #3C753E;
}
.cookie-modal__actions button.cancel {
  background: #393E37;
  color: #F2F4EC;
}
.cookie-modal__actions button.cancel:hover {
  background: #627158;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 15px 6px 12px 13px;
    width: 97vw;
  }
}
/* ----------------------------
   ANIMATION UTILITIES
---------------------------- */
.fade-in {
  animation: fadeIn 0.45s cubic-bezier(.45,0,.15,1) 1;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: none; }
}
.slide-in-left {
  animation: slideInLeft 0.3s cubic-bezier(.55,0,.15,1) 1;
}
@keyframes slideInLeft {
  from {transform: translateX(-108vw);}
  to {transform: translateX(0);}
}
.slide-out-left {
  animation: slideOutLeft 0.25s cubic-bezier(.55,0,.15,1) 1;
}
@keyframes slideOutLeft {
  from {transform: translateX(0);}
  to {transform: translateX(-108vw);}
}
/* ----------------------------
   RESPONSIVE BREAKPOINTS
---------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
    padding: 0 9px;
  }
}
@media (max-width: 800px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .section { padding: 23px 6px; }
}
@media (max-width: 495px) {
  h1 { font-size: 1.18rem; margin-bottom: 9px; }
  h2 { font-size: 1.02rem; margin-bottom: 7px; }
  .section { margin-bottom: 22px; }
}
/* ----------------------------
   BRAND METALLIC & URBAN ACCENT EFFECTS
---------------------------- */
.section, .card, .testimonial-card {
  /* Fake metallic accent with border, shadow and subtle noise */
  background-blend-mode: multiply;
  border-bottom: 2.5px solid #393E37;
  box-shadow: 0 2px 14px 0 rgba(60,80,71,0.17);
}
.section {
  position: relative;
}
.section:before {
  /* metallic shine accent at top left */
  content: '';
  display: block;
  position: absolute;
  left: 2.5%; top: 0;
  width: 60px; height: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(205,207,200,0.26), rgba(40,55,44,0.08));
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.card:after {
  content: '';
  position: absolute;
  bottom: 5px; right: 15px;
  width: 38px; height: 6px;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(140,142,135,0.07), rgba(63,63,63,0.13));
  opacity: .23;
  pointer-events: none;
}
/* ----------------------------
   SCROLLBAR STYLE (Industrial)
---------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #232825;
}
::-webkit-scrollbar-thumb {
  background: #393E37;
  border-radius: 7px;
}
/* ----------------------------
   SELECTION COLOR
---------------------------- */
::selection {
  background: #85B758;
  color: #232825;
}
/* ----------------------------
   ACCESSIBILITY
---------------------------- */
:focus-visible {
  outline: 2px solid #85B758;
  outline-offset: 1px;
}
/* ----------------------------
   HELPER CLASSES
---------------------------- */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 25px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 25px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 30px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
@media (max-width: 599px) {
  .text-center, .text-right { text-align: left; }
}
/* ----------------------------
   PRINT STYLES
---------------------------- */
@media print {
  body, .section, .card, .testimonial-card, .container { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  nav, .footer, .mobile-menu, .cookie-banner, .cookie-modal__overlay { display: none !important; }
}
