/* CSS RESET & BASE STYLES */
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, main, 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; -webkit-text-size-adjust:100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #F7F7FB;
  color: #2D563A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #C43700;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #174524;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* BRAND PASTEL PALETTE */
:root {
  --primary: #2D563A;
  --primary-dark: #174524;
  --secondary: #FFEB99;
  --accent: #F45B2D;
  --accent-bold: #C43700;
  --bg: #F9FAFC;
  --bg-card: #FEFEFB;
  --bg-light-pink: #FFF5F2;
  --bg-light-green: #E8FAF1;
  --bg-light-yellow: #FFFAE2;
  --gray: #A9B1A6;
  --shadow: 0 4px 24px 0 rgba(131,169,160,0.10);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary-dark);
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* MAIN CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper, .text-section {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.text-section {
  background: var(--bg-light-green);
}

/* FLEX LAYOUTS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-light-yellow);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 20px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light-pink);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(244,91,45,0.10);
  margin-bottom: 24px;
  color: #2D563A;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--bg-light-yellow);
  border-radius: 14px;
  padding: 22px 14px;
  box-shadow: var(--shadow);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
}

/* BUTTONS & CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 32px;
  background: linear-gradient(90deg, #FFEB99 0%, #E7F8EC 100%);
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 1px 6px 0 rgba(44,86,58,0.12);
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
  cursor: pointer;
  margin: 12px 8px 0 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 28px 0 rgba(244,91,45,0.11);
  text-decoration: none;
}
.cta-btn.secondary {
  background: var(--primary-dark);
  color: #fff;
  border: none;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--accent);
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #E7F8EC 0%, #FFFAE2 100%);
  padding: 0 0 8px;
  box-shadow: 0 2px 16px 0 rgba(44,86,58,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* HEADER LOGO */
header img[alt="Lumen Drive Küchenwelten"] {
  height: 46px;
  width: auto;
  margin-right: 20px;
}
@media (max-width: 520px) {
  header img[alt="Lumen Drive Küchenwelten"] {
    height: 34px;
  }
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #E7F8EC 40%, #FFFAE2 100%);
  padding: 36px 0 10px;
  color: var(--primary-dark);
  font-size: 0.97rem;
  box-shadow: 0 -2px 12px 0 rgba(44,86,58,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
footer nav a {
  color: var(--primary);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent);
  color: #fff;
}
footer address {
  font-style: normal;
  color: var(--gray);
}
.footer-contact a {
  color: var(--accent-bold);
  font-weight: 600;
}
.footer-hours {
  color: var(--primary-dark);
  font-size: 0.93rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  display: flex;
  width: 26px;
  height: 26px;
}
.footer-social a img {
  display: block;
  height: 22px;
  filter: drop-shadow(0 0 4px #FFEB99);
  transition: filter 0.18s, opacity 0.18s;
  opacity: 0.93;
}
.footer-social a:hover img {
  filter: drop-shadow(0 0 8px #F45B2D);
  opacity: 1;
}

/* MAP PLACEHOLDER STYLES */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--bg-light-green);
  border-radius: 15px;
  padding: 18px 10px;
  box-shadow: 0 1px 6px 0 rgba(44,86,58,0.08);
  margin-top: 6px;
  width: 100%;
  max-width: 480px;
}
.map-placeholder img {
  height: 46px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1120px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 100vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .content-wrapper, .text-section {
    padding: 28px 9px;
  }
  .map-placeholder {
    padding: 13px 4px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-list, .section {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .container { padding-left: 5px; padding-right: 5px; }
}
@media (max-width: 540px) {
  .section {
    padding: 18px 4px;
    margin-bottom: 28px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.17rem; }
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--accent-bold);
  width: 44px;
  height: 44px;
  border: none;
  font-size: 2rem;
  border-radius: 10px;
  position: fixed;
  right: 18px;
  top: 20px;
  z-index: 101;
  box-shadow: 0 2px 8px 0 rgba(44,86,58,0.05);
  transition: background 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: #fff;
}
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  header nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    background: linear-gradient(90deg, #FFFAE2 80%, #E7F8EC 100%);
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1200;
    box-shadow: 0 2px 30px 10px rgba(44,86,58,0.18);
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.32s;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-close {
    position: absolute;
    right: 18px;
    top: 14px;
    background: var(--accent);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    z-index: 1210;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: var(--primary);
    color: var(--secondary);
  }
  .mobile-nav {
    margin-top: 80px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.33rem;
    color: var(--accent-bold);
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px 0;
    border-radius: 15px;
    width: 72vw;
    text-align: center;
    transition: background 0.13s, color 0.13s;
    background: transparent;
    box-shadow: none;
    outline: none;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--accent);
    color: #fff;
  }
}

/* Animations for burger menu (for JavaScript class toggling) */
.mobile-menu {
  will-change: transform, opacity;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: linear-gradient(90deg, #FFFAE2 60%, #E7F8EC 100%);
  box-shadow: 0 -4px 18px 0 rgba(44,86,58,0.16);
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary-dark);
  opacity: 1;
  transition: opacity 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  margin-right: 16px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  min-width: 110px;
  padding: 11px 22px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 6px 0 rgba(44,86,58,0.08);
  background: var(--primary);
  color: #fff;
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: var(--bg-light-pink);
  color: var(--accent-bold);
  border: 1.5px solid var(--accent);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary-dark);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(244,91,45,0.11);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--bg-light-green);
  color: var(--accent-bold);
}
@media (max-width: 570px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.99rem;
    padding: 18px 8px 11px 8px;
  }
  .cookie-banner .cookie-text { margin-right: 0; }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,86,58,.13);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(0.16,1,0.3,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--bg-light-yellow);
  border-radius: 20px;
  max-width: 94vw;
  width: 400px;
  box-shadow: 0 3px 24px 0 rgba(44,86,58,0.14);
  padding: 30px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInModal 0.33s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
@keyframes fadeInModal {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent-bold);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category .switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-category input[type="checkbox"] {
  opacity: 0; width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--gray);
  border-radius: 16px;
  transition: background 0.17s;
}
.cookie-category input:checked + .slider {
  background: var(--accent);
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #fff;
  transition: transform 0.17s;
}
.cookie-category input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-category label {
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
}
.cookie-category .essential {
  color: var(--gray);
  font-size: 0.98em;
  font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--accent-bold);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fff0e9;
  color: var(--primary);
}

/* --- MISC MODERN EFFECTS --- */
.section, .content-wrapper, .text-section, .card, .feature-item, .testimonial-card {
  box-shadow: var(--shadow);
}
.section {
  border-radius: 30px 23px 56px 23px / 30px 41px 62px 24px;
  background: var(--bg-light-yellow);
  overflow: visible;
}
.section:nth-child(even) {
  background: var(--bg-light-green);
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* --- FORMS (if any forms are added future) --- */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  border: 1.7px solid var(--gray);
  padding: 12px;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.17s, box-shadow 0.16s;
}
input:focus, select:focus, textarea:focus {
  border: 1.7px solid var(--accent-bold);
  box-shadow: 0 2px 6px 0 #ffe7dc;
}
button, .cta-btn { outline: none; }

/* --- BLOCKQUOTE (Testimonials) --- */
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-style: italic;
  margin: 0 0 4px 0;
  letter-spacing: 0.012em;
}

/* --- Card Modifiers --- */
.card {
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: 18px;
}

/* --- SCROLLBAR BEAUTIFY (Webkit only) --- */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--bg-light-yellow);
  border-radius: 16px;
}
body::-webkit-scrollbar-track {
  background: var(--bg);
}

/* --- SELECTION --- */
::selection {
  background: #FFF5F2;
  color: var(--primary-dark);
}

/* --- UTILITY CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }

/* --- ACCESSIBILITY & CONTRAST --- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card div {
  color: #174524;
  background: var(--bg-light-pink);
}

/* --- ENSURE NO OVERLAP, SPACING --- */
.content-wrapper + .content-wrapper,
.section + .section,
.card + .card,
.card-container > * + *,
.feature-list > * + *,
.content-grid > * + * {
  margin-top: 20px;
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
.card, .content-wrapper, .testimonial-card, .feature-item {
  transition: box-shadow 0.22s, transform 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(52,69,42,0.13);
  transform: translateY(-3px) scale(1.017);
}

/* --- FOCUS STATES --- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* --- Ensure no forbidden properties used (no grid, columns etc.) --- */
/* [No grid, columns, or clamp functions are present anywhere above] */