/* CSS RESET & BASE STYLES – 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;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #212832;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
  line-height: 1.6;
  overscroll-behavior-y: none;
  /* dramatic contrast */
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2986A;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111216;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
p {
  color: #23262F;
  font-size: 1.05rem;
  margin-bottom: 1.15em;
}
strong {
  font-weight: 700;
}

/* CONTAINER & PAGE LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(33,40,50,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 0px;
    margin-bottom: 36px;
    border-radius: 0;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #F0F0F0;
  box-shadow: 0 2px 20px rgba(33,40,50,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: #212832;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 3px 0;
  transition: color 0.18s;
}
header nav a.cta {
  background: #212832;
  color: #fff;
  padding: 10px 22px;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 1px 5px rgba(33,40,50,0.03);
  margin-left: 18px;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #C2986A;
  color: #111;
}
header nav a:hover,
header nav a:focus {
  color: #C2986A;
}

header img {
  height: 36px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  color: #212832;
  font-size: 2rem;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px transparent;
  transition: background 0.2s;
  outline: none;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #212832;
  color: #fff;
}

@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(33,40,50, 0.97);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 34px;
  padding-right: 34px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
  pointer-events: none;
  transform: translateX(100%);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(0.5,0.1,0.3,1), opacity 0.33s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 6px 14px;
  border-radius: 50%;
  margin-bottom: 11px;
  align-self: flex-end;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #212832;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-end;
  padding-top: 36px;
  padding-right: 6px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  padding: 12px 0 6px 0;
  border-bottom: 1px solid rgba(245,246,248,0.08);
  width: 90vw;
  text-align: right;
  transition: color 0.18s, background 0.2s;
}
.mobile-nav a.cta,
.mobile-nav a[href*="kontakt"],
.mobile-nav a[href*="termin"] {
  background: #fff;
  color: #212832;
  display: inline-block;
  border-radius: 22px;
  padding: 10px 26px;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(194,152,106,0.10);
  margin-top: 12px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #C2986A;
  background: #23262F;
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: #F5F6F8;
  padding: 60px 0 64px 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 32px rgba(33,40,50,0.07);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #212832;
  margin-bottom: 16px;
  font-size: 2.75rem;
}
.hero p {
  max-width: 650px;
  color: #212832;
  font-size: 1.18rem;
  margin-bottom: 36px;
}
.hero .cta {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero {
    padding: 42px 0 34px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
  }
  .hero h1 { font-size: 2rem; }
}

/* BUTTONS & CTA */
.cta {
  display: inline-block;
  background: #212832;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  border-radius: 24px;
  padding: 12px 32px;
  border: none;
  box-shadow: 0 2px 16px rgba(33,40,50,0.06);
  transition: background 0.17s, color 0.17s, box-shadow 0.25s;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}
.cta:hover,.cta:focus {
  background: #C2986A;
  color: #23262F;
  box-shadow: 0 5px 30px rgba(33,40,50,0.13);
}

/* FLEXBOX CARD AND FEATURE LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 30px 0 10px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(33,40,50,0.07);
  padding: 28px 26px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(33,40,50,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
}
.feature-item h3 {
  margin-bottom: 8px;
}

.card-container,
.card-grid,
.service-cards,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card,
.service-card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 13px rgba(33,40,50,0.06);
  padding: 22px 23px 19px 23px;
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.13s, transform 0.11s;
}
.card:hover,
.service-card:hover {
  box-shadow: 0 10px 32px rgba(33,40,50,0.14);
  transform: translateY(-3px) scale(1.01);
}
.service-card .price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #C2986A;
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .service-card,
  .feature-item {
    min-width: 90vw;
    max-width: 100vw;
    width: 100%;
  }
  .feature-grid,
  .service-cards {
    gap: 18px;
  }
}

.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: 18px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 8px 0;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,40,50,0.05);
  min-width: 220px;
  max-width: 330px;
  border: 1px solid #ECECEC;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(33,40,50,0.14);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #1E2129;
  font-size: 1rem;
  margin-bottom: 6px;
}
.testimonial-card .name {
  color: #212832;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-card .stars {
  color: #C2986A;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-top: 0;
}
@media (max-width: 880px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100vw;
    width: 100%;
  }
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 16px 0;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #212832;
  cursor: pointer;
  transition: color 0.16s;
  padding-right: 10px;
  margin-bottom: 0;
}
.faq-item h3:hover, .faq-item h3:focus {
  color: #C2986A;
}
.faq-item > div {
  padding: 9px 0 9px 0;
  font-size: 0.98rem;
  color: #23262F;
  line-height: 1.6;
}

/* LIST STYLES */
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.35em;
}
.contact-prompt {
  font-size: 1.05rem;
  margin-top: 18px;
}

/* SPECIALS: MILESTONES, PRICING, ETC */
.milestones,
.trending-brands,
.collection-types,
.pricing-highlights,
.schedule {
  margin-top: 22px;
  background: #F5F6F8;
  padding: 22px 15px;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(33,40,50,0.03);
}

.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: howitworks;
  margin-left: 1.1em;
}
.how-it-works li {
  list-style-type: none;
  position: relative;
  padding-left: 26px;
  font-size: 1.06rem;
  margin-bottom: 2px;
}
.how-it-works li:before {
  counter-increment: howitworks;
  content: counter(howitworks) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #C2986A;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background: #F5F6F8;
  padding: 18px 18px 15px 18px;
  border-radius: 13px;
  margin-top: 40px;
  box-shadow: 0 2px 12px rgba(33,40,50,0.03);
  flex: 1 1 220px;
}
.newsletter-signup h3 {
  margin-bottom: 6px;
}
.newsletter-signup p {
  color: #23262F;
  font-size: 1.045rem;
  margin-bottom: 2px;
}

/* SOCIAL */
.social-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 22px 0 2px 0;
  align-items: center;
}
.social-media-links a img {
  width: 27px;
  height: 27px;
  opacity: 0.76;
  transition: opacity 0.17s;
  border-radius: 50%;
}
.social-media-links a:hover img {
  opacity: 1;
  filter: brightness(1.1) drop-shadow(0 2px 8px #C2986A55);
}

/* FOOTER */
footer {
  background: #212832;
  color: #fff;
  padding: 48px 0 20px 0;
  margin-top: 45px;
  border-radius: 40px 40px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 35px;
  margin-bottom: 15px;
  filter: grayscale(15%) contrast(1.05);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #C2986A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer .newsletter-signup {
  background: #23262F;
  color: #fff;
  border-radius: 12px;
  min-width: 230px;
}
footer .newsletter-signup h3 {
  color: #C2986A;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer {
    border-radius: 24px 24px 0 0;
    padding: 35px 0 15px 0;
  }
}
@media (max-width: 500px) {
  footer {
    border-radius: 7px 7px 0 0;
  }
  footer img {
    height: 22px;
    margin-bottom: 8px;
  }
}

/* COOKIE CONSENT BANNER */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #212832;
  color: #fff;
  padding: 24px 16px 24px 16px;
  width: 100vw;
  min-height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  box-shadow: 0 -3px 24px #00000016;
  font-size: 1rem;
  visibility: visible;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(0.6,0,0.3,1), opacity 0.25s;
  will-change: transform;
  pointer-events: auto;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 0px;
  color: #fff;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-controls {
  display: flex;
  gap: 17px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #fff;
  color: #23262F;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  padding: 9px 22px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.21s, color 0.19s;
  box-shadow: 0 1px 6px rgba(33,40,50,0.08);
}
.cookie-btn.accept {
  background: #C2986A;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #fff;
  color: #C2986A;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #C2986A;
}
.cookie-btn.settings:hover {
  background: #C2986A;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #23262F;
  border: 1px solid #C2986A;
}
.cookie-btn.reject:hover {
  background: #C2986A;
  color: #fff;
}
@media (max-width: 800px) {
  #cookie-banner, .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 6px 18px 12px;
    font-size: 0.98rem;
  }
  .cookie-controls {
    width: 100%;
    gap: 7px;
    margin-top: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33,40,50,0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #212832;
  border-radius: 20px;
  max-width: 440px;
  width: 95vw;
  padding: 36px 24px 30px 24px;
  box-shadow: 0 6px 40px rgba(33,40,50,0.21);
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeInScale 0.26s cubic-bezier(0.61,0.02,0.29,0.98);
}
@keyframes fadeInScale {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #23262F;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #C2986A;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-modal-category label {
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  padding: 9px 20px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .feature-grid, .service-cards, .card-container, .card-grid, .service-list, .testimonial-slider {
    gap: 15px;
  }
}
@media (max-width: 640px) {
  .feature-item, .service-card, .card, .testimonial-card {
    min-width: 90vw;
    max-width: 98vw;
  }
  .feature-grid, .service-cards, .card-container, .testimonial-slider {
    gap: 12px;
  }
}

/* VISUAL HIERARCHY & MISC */
hr {
  border: 0;
  border-top: 1.5px solid #eee;
  margin: 32px 0 24px 0;
}

::-webkit-scrollbar {
  width: 10px;
  background: #ECECEC;
}
::-webkit-scrollbar-thumb {
  background: #21283233;
  border-radius: 14px;
}

/* High Contrast for Accessibility in Testimonials */
.testimonial-card p {
  color: #1a1a1a;
  background: none;
}

/* Ensuring elegant visual separation between all sections and cards */
section, .section, .feature-item, .card, .service-card, .testimonial-card {
  margin-bottom: 20px;
}

/* Override for rare cases of overlap */
* {
  box-sizing: border-box;
}

/* Hide visually unnecessary outlines but keep focus styles for accessibility */
:focus {
  outline: 2px solid #C2986A;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS */
button, .cta, .cookie-btn {
  transition: background 0.17s, color 0.16s, box-shadow 0.19s, transform 0.08s;
}
button:active, .cta:active, .cookie-btn:active {
  transform: scale(0.97);
}

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

/* END CSS */
