/* --- CSS RESET & NORMALIZATION --- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f8fafb;
  color: #20292f;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* --- BRAND VARIABLES (FALLBACKS for old browsers) --- */
:root {
  --primary: #264653;
  --secondary: #2a9d8f;
  --accent: #e9c46a;
  --white: #fff;
  --offwhite: #f8fafb;
  --bg-testimonial: #f6edd8;
  --dark: #1a2133;
  --shadow: 0 4px 16px 0 rgba(38,70,83,0.09);
  --radius: 18px;
  --radius-small: 10px;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  line-height: 1.16;
  background: linear-gradient(90deg,var(--secondary) 40%,var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--secondary);
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
}
h4 {
  font-size: 1.05rem;
  color: var(--secondary);
}

p, li, span, address, label, input, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222a34;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
}

label {
  font-weight: 500;
}

/* --- GENERAL SPACING --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-small);
  background: var(--offwhite);
  box-shadow: var(--shadow);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--bg-testimonial);
  box-shadow: 0 2px 16px 0 rgba(38,70,83,0.07);
  min-width: 200px;
  max-width: 420px;
}
.testimonials-list, .testimonials-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: stretch;
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  padding: 24px;
  border-radius: var(--radius-small);
  color: var(--dark);
  min-width: 230px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}

/* --- HEADER / NAVIGATION --- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px 0 rgba(38,70,83,0.05);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  min-height: 80px;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 1rem;
  color: var(--primary);
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.cta-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 32px;
  box-shadow: 0 3px 12px 0 rgba(42,157,143,0.09);
  margin-left: 16px;
  transition: background 0.15s, box-shadow 0.25s, transform 0.18s;
  letter-spacing: 0.03em;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.045) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(42,157,143,0.21);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
  z-index: 52;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
  z-index: 1111;
  box-shadow: 1px 0 36px 0 rgba(38,70,83,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  padding: 8px;
  margin: 20px 0 22px 24px;
  background: var(--secondary);
  border-radius: 99px;
  color: var(--white);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 36px;
  margin: 0;
}
.mobile-nav a {
  display: block;
  font-size: 1.13rem;
  padding: 12px 0;
  color: var(--primary);
  border-bottom: 1px solid #e9c46a33;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.18s, background 0.2s;
  border-radius: 9px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  background: #e9c46a22;
}

/* --- HERO SECTION & HIGHLIGHTS --- */
.hero {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 80%);
  border-radius: 0 0 50px 50px/0 0 70px 70px;
  padding: 64px 0 56px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero .content-wrapper {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
  color: var(--primary);
}
.hero h1 {
  color: var(--primary);
  margin-bottom: 10px;
  background: none;
  -webkit-text-fill-color: initial;
}
.hero p {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 21px;
  font-family: 'Roboto',sans-serif;
}
.hero .cta-primary {
  margin-top: 8px;
  font-size: 1.08rem;
  padding: 12px 32px;
}

/* --- FEATURE, INFO, CONTACT --- */
.features-grid > div {
  background: var(--accent);
  border-radius: var(--radius-small);
  padding: 28px 18px 18px 18px;
  box-shadow: 0 2px 16px 0 rgba(233,196,106,0.05);
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  min-width: 200px;
}
.features-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.features-grid h3 {
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 3px;
}
.features-grid p {
  font-size: 0.99rem;
  color: #292929;
}
.contact-highlight, .contact-info {
  margin-top: 24px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  flex-direction: row;
}
.contact-highlight li,
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
}
.contact-highlight img,
.contact-info img {
  width: 28px;
  height: 28px;
}
.anfahrt {
  margin-top: 30px;
  background: #e9c46a22;
  padding: 20px;
  border-radius: var(--radius-small);
}

/* --- TESTIMONIALS --- */
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: #26272A;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat',sans-serif;
}

.review-summary {
  background: #e9c46a25;
  border-radius: var(--radius-small);
  padding: 20px;
  margin-top: 24px;
}
.certification {
  background: #f1f6f3;
  border-radius: var(--radius-small);
  padding: 18px 20px 10px 20px;
  margin-top: 28px;
}
.certification ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.certification li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.certification img {
  width: 28px;
  height: 28px;
}

/* --- FAQ --- */
.faq-list h2 {
  font-size: 1.11rem;
  color: var(--primary);
  margin-top: 32px;
}
.faq-list ul {
  margin-bottom: 18px;
  margin-top: 6px;
}
.faq-list li {
  font-size: 1rem;
  margin-bottom: 9px;
  padding-left: 8px;
  position: relative;
}
.faq-list li::before {
  content: '\275A';
  color: var(--accent);
  font-weight: 800;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 2.5px;
  font-size: 0.96em;
}
.faq-list ul {
  padding-left: 24px;
}

/* --- ABOUT, GALERIE --- */
.weiter-links ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.weiter-links li {
  font-size: 1rem;
}
.weiter-links a {
  color: var(--secondary);
  border-bottom: 1.5px dotted var(--secondary);
  padding-bottom: 1.5px;
  transition: color 0.17s, border-color 0.2s;
}
.weiter-links a:hover{ color:var(--primary); border-bottom-color: var(--primary); }

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 26px 0;
  border-radius: 34px 34px 0 0 / 48px 48px 0 0;
  margin-top: 60px;
  box-shadow: 0 -1px 18px 0 rgba(38,70,83,0.055);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat',sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact span {
  font-size: 1rem;
  color: var(--white);
  font-family: 'Roboto',Arial,sans-serif;
}

/* --- LISTS & TYPOGRAPHY --- */
ul, ol {
  margin-bottom: 18px;
  margin-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 14px;
  line-height: 1.5;
}
li b { color: var(--secondary); font-weight: 700; }
section ul, section ol {
  padding-bottom: 8px;
}

/* --- FORM ELEMENTS (if present) --- */
input, textarea, select {
  padding: 10px 14px;
  border: 1.5px solid #d8e2e7;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  font-family: 'Roboto',sans-serif;
  background: var(--offwhite);
  color: #222a34;
  outline: none;
  transition: border 0.19s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
}

/* --- BUTTON PRIMARY styles --- */
button,
input[type='submit'],
.cta-primary {
  cursor: pointer;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
a, button, .cta-primary {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform .16s;
}

.card:hover, .feature-item:hover {
  box-shadow: 0 8px 30px 0 rgba(42,157,143,0.13);
  background: #e9c46a22;
  transform: translateY(-3px) scale(1.02) rotate(-0.7deg);
}

.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(38,70,83,0.23);
  background: #f8f2e0;
  transform: scale(1.04) rotate(0.7deg);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  padding: 20px 16px 18px 16px;
  box-shadow: 0 -3px 24px 0 rgba(38,70,83,.19);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  z-index: 9999;
  font-size: 1rem;
  justify-content: center;
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 10px 21px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 1rem;
  margin-left: 0;
  transition: background .15s, color .15s, transform .15s;
  box-shadow: 0 3px 12px 0 rgba(233,196,106,0.05);
}
.cookie-banner span {
  color: white;
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  color: var(--secondary);
  background: #fff2cc;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  color: var(--primary);
  background: var(--accent);
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10111;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,70,83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 28px;
  min-width: 320px;
  max-width: 96vw;
  max-height: 90vh;
  box-shadow: 0 6px 42px 0 rgba(38,70,83,0.23);
  padding: 38px 32px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 21px;
  top: 20px;
  font-size: 2rem;
  color: var(--secondary);
  background: none;
  border-radius: 22px;
  transition: background 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #e9c46a22;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  padding-left: 2px;
  margin-bottom: 1px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 9px 13px;
  background: #f6edd8;
}
.cookie-modal .category-label {
  font-size: 1.01rem;
  font-family: 'Montserrat',sans-serif;
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  width: 46px;
  height: 26px;
  border-radius: 18px;
  background: #d9dbe2;
  position: relative;
  transition: background 0.17s;
  flex-shrink: 0;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--secondary);
}
.cookie-modal .cookie-toggle .toggle-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-modal .cookie-toggle.enabled .toggle-handle {
  left: 23px;
  background: var(--accent);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal button {
  padding: 9px 23px;
  border-radius: 18px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.cookie-modal .cookie-accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal .cookie-reject {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  opacity: 0.88;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .container { max-width: 1000px; }
}
@media (max-width: 990px) {
  .container { max-width: 780px; }
  .features-grid > div, .feature-item {
    min-width: 170px;
  }
}
@media (max-width: 820px) {
  .container { max-width: 97vw; padding: 0 11px; }
  .features-grid, .testimonials-list, .testimonials-preview {
    flex-wrap: wrap;
    gap: 16px;
  }
  .features-grid > div {
    min-width: 135px;
  }
}
@media (max-width: 720px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px 9px;
    min-height: 54px;
    padding: 0 13px;
  }
  nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .content-wrapper, .section {
    padding: 26px 3px 22px 3px;
    margin-bottom: 32px;
  }
  .hero {
    padding: 32px 0 30px 0 !important;
    border-radius: 0 0 32px 32px/0 0 32px 32px;
  }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  .features-grid {
    gap: 12px;
  }
  .features-grid > div {
    min-width: 140px;
    padding: 16px 8px 8px 8px;
  }
  .testimonial-card {
    min-width: 170px;
    max-width: 97vw;
    padding: 14px 10px;
  }
  .testimonials-list, .testimonials-preview {
    gap: 10px;
  }
  .contact-highlight, .contact-info {
    gap: 10px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 550px) {
  .footer-nav {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
  }
  .footer-contact {
    font-size: 0.95rem;
    text-align: center;
    display: block;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* --- ACCESSIBILITY FOCUSED --- */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- ARTISTIC CREATIVE DETAILS --- */
section {
  position: relative;
  overflow: visible;
}
section::before {
  /* Decorative, abstract floating brush-stroke */
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: -32px;
  left: 26px;
  width: 90px;
  height: 38px;
  background: #e9c46a33;
  border-radius: 32px 44px 32px 0 / 34px 32px 22px 0;
  transform: rotate(-10deg);
  opacity: 0.48;
  pointer-events: none;
}
section:last-of-type::after {
  /* Decorative color blob bottom right */
  content: '';
  display: block;
  position: absolute;
  bottom: -36px;
  right: 19px;
  width: 74px;
  height: 25px;
  background: #2a9d8f2a;
  border-radius: 0 0 34px 44px / 0 0 33px 23px;
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}
.content-wrapper, .card, .feature-item {
  position: relative;
  z-index: 1;
}

/* --- PRINT FRIENDLY OVERRIDE --- */
@media print{
  * {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
  }
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal-overlay {
    display: none !important;
  }
}
