/* 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;
  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.5;
  background: #F4EFE7;
  color: #28313B;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #753c28;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B85B3A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
strong {
  font-weight: 700;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* VINTAGE RETRO COLORS & FONTS */
:root {
  --primary: #28313B;
  --secondary: #85A392;
  --accent: #F4EFE7;
  /* Retro Palette Extensions */
  --retro-orange: #E8A87C;
  --retro-yellow: #F8E16C;
  --retro-blue: #6C8EA4;
  --retro-cream: #FFF6E0;
  --retro-brown: #753C28;
  --retro-dark: #22262A;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-brown);
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 0px var(--retro-yellow), 0 0 1px var(--accent);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.6;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--retro-dark);
  padding: 10px 22px;
  border-left: 5px solid var(--retro-orange);
  background: var(--retro-cream);
  margin-bottom: 8px;
  border-radius: 8px;
  font-style: italic;
  position: relative;
}
blockquote:before {
  content: '\201C';
  color: var(--retro-orange);
  font-size: 2em;
  line-height: 1;
  position: absolute;
  left: 7px;
  top: 2px;
}

/* General Container Layouts */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sections, Spacing, Alignment */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(120,85,60,0.05), 0 1.5px 6px var(--secondary), 0 0.5px 2px var(--retro-yellow);
  position: relative;
  overflow: visible;
}
section.cta-banner {
  background: var(--retro-orange);
  color: var(--retro-dark);
  text-align: center;
  box-shadow: 0 7px 36px rgba(120,85,60,0.11);
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .features, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(120,85,60,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--retro-cream);
  border: 2.5px dashed var(--retro-brown);
  box-shadow: 0 4px 15px rgba(80,48,38,0.14);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--retro-brown);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Vintage Buttons / CTAs */
.cta-btn, button.cta-btn {
  display: inline-block;
  background: var(--retro-orange);
  color: var(--retro-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 99px 16px 80px 24px/33px 75px 24px 80px;
  border: 2px solid var(--retro-brown);
  padding: 14px 38px;
  box-shadow: 0 3px 10px rgba(180,116,80,0.10);
  transition: background 0.22s, color 0.22s, transform 0.12s;
  margin-top: 16px;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 7px 24px rgba(120,85,60,0.34);
  border-color: var(--retro-brown);
  outline: 2px solid var(--secondary);
}

/* Header & Navigation */
header {
  width: 100%;
  background: var(--primary);
  border-bottom: 4px double var(--retro-yellow);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(61,44,36,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 12px 18px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-yellow);
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 1px rgba(244,239,231,0.12);
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-bottom 0.22s;
}
header nav a:hover, header nav a:focus, header nav a.active {
  color: var(--retro-orange);
  border-bottom: 2px solid var(--retro-orange);
}
header img[alt="Synthetic Bloom Möbel"] {
  height: 54px;
}

header .cta-btn {
  margin-left: 25px;
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border-color: var(--retro-brown);
  box-shadow: 0 2px 8px rgba(242, 209, 88,0.12);
}
header .cta-btn:hover, header .cta-btn:focus {
  background: var(--retro-orange);
  color: var(--retro-dark);
}

.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--retro-brown);
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 9px 20px 9px 16px;
  border: 2px solid var(--retro-brown);
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 201;
  box-shadow: 0 2px 7px rgba(120,85,60,0.13);
  cursor: pointer;
  transition: background 0.23s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-yellow);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--primary);
  color: var(--retro-yellow);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  opacity: 0.99;
  box-shadow: 6px 0 50px rgba(80,60,30,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
  animation: mmenu-fadein 0.15s linear;
}
@keyframes mmenu-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu-close {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  font-size: 2rem;
  border: 2px solid var(--retro-brown);
  border-radius: 10px;
  align-self: flex-end;
  margin: 18px 28px 16px 0;
  cursor: pointer;
  padding: 7px 19px;
  transition: background 0.2s,color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-orange);
  color: var(--primary);
  border-color: var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-left: 38px;
  margin-top: 22px;
}
.mobile-nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 7px 0;
  text-shadow: 0 3px 7px var(--retro-brown);
  border-bottom: 2px solid transparent;
  width: 100%;
  display: block;
  transition: color 0.2s, border-bottom 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-orange);
  border-bottom: 2px solid var(--retro-orange);
}

/* HERO */
.hero {
  background: repeating-linear-gradient(-8deg,var(--retro-cream), var(--accent) 20px, var(--retro-yellow) 40px);
  box-shadow: 0 8px 28px rgba(170,120,68,0.11);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0 0 37px 44px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  padding-top: 52px;
  padding-bottom: 52px;
  gap: 18px;
}
.hero h1 {
  color: var(--retro-brown);
  font-size: 2.7rem;
  text-shadow: 2px 2px 0px var(--retro-yellow);
}
.hero p {
  font-size: 1.18rem;
  color: var(--retro-dark);
  margin-bottom: 12px;
}
.hero .cta-btn {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  margin-top: 16px;
  border-color: var(--retro-yellow);
  box-shadow: 0 4px 18px rgba(68,48,12,0.18);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}

/* FEATURES */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 16px;
  padding: 20px 30px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 1.5px 8px rgba(180,150,30,0.08);
  min-width: 230px;
  margin-bottom: 10px;
  border: 1.6px solid var(--retro-orange);
  transition: transform 0.18s, box-shadow 0.18s;
}
.features ul li:hover, .features ul li:focus {
  transform: scale(1.035) rotate(-0.7deg);
  box-shadow: 0 5px 20px rgba(180,130,40,0.15);
  background: var(--retro-orange);
}
.features ul li img {
  height: 38px;
  width: 38px;
  background: var(--accent);
  border-radius: 50%;
  padding: 6px;
  border: 1px solid var(--secondary);
}

/* PREVIEWS & ABOUT */
.about-preview, .services-preview {
  background: var(--retro-cream);
  border: 2px solid var(--retro-yellow);
}
.about-preview h2, .services-preview h2 {
  color: var(--retro-brown);
}

.services-preview ul,
.about-preview ul {
  margin-left: 0;
  padding-left: 1.2em;
}
.services-preview li,
.about-preview li {
  font-size: 1.06rem;
  margin-bottom: 9px;
}

/* CARDS */
.card {
  border: 2px solid var(--retro-yellow);
  background: var(--retro-cream);
  box-shadow: 0 2px 15px rgba(180,140,40,0.13);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* TESTIMONIALS */
.testimonials-preview .testimonial-card,
.kundenstimmen .testimonial-card,
section .testimonial-card {
  background: var(--retro-cream);
  color: var(--primary);
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(68,48,12,0.13);
  border: 2px dashed var(--retro-orange);
  margin-bottom: 22px;
}
.testimonial-meta {
  color: var(--retro-brown);
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 4px;
  font-style: normal;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--retro-yellow);
  padding: 28px 0 12px 0;
  margin-top: 80px;
  border-top: 3px double var(--retro-yellow);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.18s;
}
footer nav a:hover {
  color: var(--retro-orange);
  text-decoration: underline;
}
footer p {
  color: var(--retro-yellow);
  font-size: 0.96rem;
  text-align: center;
}

/* CONTACT DETAILS */
.contact-details {
  background: var(--retro-yellow);
  border-radius: 13px;
  padding: 23px;
  margin-bottom: 15px;
  box-shadow: 0 2px 14px rgba(180,130,40,0.10);
}
.contact-details h2 {
  color: var(--retro-brown);
  font-size: 1.05rem;
  margin-top: 12px;
  margin-bottom: 5px;
  font-family: 'Montserrat',Arial,sans-serif;
}
.contact-details p, .contact-details a {
  color: var(--retro-brown);
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  width: 18px;
  height: 18px;
}

/* GALERIE STORIES */
.galerie-stories > div, .content-wrapper > div {
  margin-bottom: 24px;
}

/* Animations & Micro-interactions */
.cta-btn, .features ul li, .testimonial-card, .card {
  transition: box-shadow 0.23s, background 0.23s, color 0.18s, transform 0.18s;
}
.cta-btn:active, .features ul li:active {
  transform: scale(0.96);
}

/* Responsive Layouts */
@media (max-width: 1080px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .features ul {
    gap: 14px;
    flex-direction: column;
  }
  section {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .hero {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0 0 24px 16px;
    min-height: 220px;
  }
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  section {
    margin-bottom: 32px;
    padding: 22px 4vw;
    border-radius: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 92vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    padding: 14px 10px 8px 10px;
  }
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 4vw;
  }
}
@media (max-width: 520px) {
  html { font-size: 15px; }
  header img[alt="Synthetic Bloom Möbel"] { height: 42px; }
  .cta-btn, .hero .cta-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
  section {
    padding: 14px 2vw;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 8888;
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border: 2.5px solid var(--retro-brown);
  border-radius: 17px;
  box-shadow: 0 6px 28px rgba(120,85,60,0.17);
  padding: 22px 22px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.97;
  animation: cookie-slidein 0.45s;
}
@keyframes cookie-slidein {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 0.97; }
}
.cookie-banner p {
  color: var(--retro-brown);
  margin: 0 16px 0 0;
  flex: 1 1 60%;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex: 1 1 35%;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--retro-brown);
  color: var(--retro-yellow);
  border: 2px solid var(--retro-yellow);
  padding: 9px 21px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px 23px 12px 17px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.16s;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border-color: var(--retro-brown);
}
.cookie-btn.cookie-settings {
  background: var(--retro-cream);
  color: var(--retro-brown);
  border-color: var(--retro-brown);
}
.cookie-btn.cookie-settings:hover {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    left: 3vw;
    right: 3vw;
    font-size: 0.98rem;
    padding: 15px 10px 12px 10px;
    border-radius: 13px;
  }
  .cookie-banner .cookie-btns {
    gap: 11px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40,49,59,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: cookie-modal-fadein 0.2s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  border-radius: 18px;
  border: 2.5px solid var(--retro-brown);
  box-shadow: 0 11px 42px rgba(68,48,12,0.25);
  width: 98vw;
  max-width: 450px;
  padding: 32px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  position: relative;
}
.cookie-modal h2 {
  color: var(--retro-brown);
  font-size: 1.32rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--retro-brown);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--retro-orange);
  width: 18px;
  height: 18px;
}
.cookie-modal .category-essential {
  font-weight: 700;
  color: var(--retro-brown);
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  width: auto;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border-radius: 7px;
  border: 2px solid var(--retro-brown);
  font-size: 1.2rem;
  padding: 4px 13px;
  cursor: pointer;
  transition: background 0.17s,color 0.17s;
}
.cookie-modal .close-modal-btn:hover {
  background: var(--retro-orange);
}

/* Utility: Visually Hidden */
.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }


/* Decorative Vintage Patterns */
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  left: 15px;
  width: 55px;
  height: 7px;
  border-radius: 100px 30px 16px 60px;
  background: repeating-linear-gradient(90deg, var(--retro-yellow) 0, var(--retro-yellow) 7px, var(--retro-orange) 7px, var(--retro-orange) 13px);
  opacity: 0.52;
  z-index: 0;
}
@media (max-width: 520px) {
  section:before {
    left: 2vw;
    width: 31px;
    top: -8px;
  }
}

/* Hide patterns on cookie/modal overlays and mobile menu */
.cookie-banner:before,
.cookie-modal:before,
.mobile-menu:before {
  display: none !important;
}

/* Other Minor Styles */
::-webkit-scrollbar {
  height: 9px;
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--retro-orange);
}

/* Selection Color */
::selection {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section, .container, body { background: #fff !important; color: #222 !important; box-shadow: none !important; }
}
