/* ===============================
   LUMINE AUTO AUSWAHL CSS RESET
   =============================== */
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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #fff;
  color: #181A1E;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
a:focus { outline: 2px solid #181A1E; outline-offset: 1px; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: inherit;
}

/* ================================
   FONT IMPORTS & MONOCHROME STYLE
   ================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700|Roboto:400,500,700&display=swap');
:root {
  --color-primary: #222B3B;
  --color-secondary: #FFFFFF;
  --color-dark: #181A1E;
  --color-gray-900: #23262B;
  --color-gray-800: #31343A;
  --color-gray-700: #44474E;
  --color-gray-500: #A1A5AE;
  --color-gray-100: #E4E8EE;
  --color-accent: #C16F06;
  --color-accent-light: #EEE2D2;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --shadow-xs: 0 2px 6px 0 rgba(30, 32, 45, 0.06);
  --shadow-md: 0 6px 24px 0 rgba(30, 32, 45, 0.08);
  --shadow-focus: 0 0 0 3px rgba(34,43,59,0.10);
}

/* ================================
   TYPOGRAPHY & BASIC HEADINGS
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.12; }
h3 { font-size: 1.375rem; margin-bottom: 14px; font-weight: 600; }
h4 { font-size: 1.125rem; margin-bottom: 12px; font-weight: 600; }
p, ul li, ol li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-dark);
  line-height: 1.7;
}
.subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
strong { color: var(--color-primary); font-weight: 600; }

/* ================================
   LAYOUT WRAPPERS
   ================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-dark);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-secondary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  padding: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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;
  padding: 20px 24px;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-left: 6px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px 0 rgba(44, 44, 49, 0.09);
  margin-bottom: 24px;
  font-family: var(--font-body);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(44,44,49,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-list > li {
  background: var(--color-secondary);
  margin-bottom: 18px;
  border-left: 4px solid var(--color-gray-100);
  padding: 16px 20px;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-xs);
  color: var(--color-dark);
}
ol, ul {
  padding-left: 0;
}
ol > li {
  margin-bottom: 14px;
  padding-left: 6px;
  padding-right: 6px;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-gray-100);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 22px 0;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-left: 32px;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.04rem;
  font-weight: 600;
  padding: 6px 3px;
  position: relative;
  letter-spacing: 0.01em;
  transition: color 0.20s;
}
.main-nav ul a:hover,
.main-nav ul a:focus {
  color: var(--color-accent);
}

.cta-button {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(33,43,59,0.08);
  margin-left: 36px;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  text-align: center;
  display: inline-block;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: var(--shadow-md);
}

/* ================================
   MOBILE NAVIGATION
   ================================ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 30px;
  z-index: 250;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.05rem;
  border-radius: var(--radius-sm);
  width: 46px;
  height: 46px;
  border: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.8, 0.08, 0.28, 1);
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 40px;
  box-shadow: 0 10px 50px rgba(32, 32, 32, 0.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-gray-900);
  color: #fff;
  font-size: 2.1rem;
  border-radius: var(--radius-sm);
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  align-self: flex-end;
  margin: 0 18px 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-100);
  transition: color 0.15s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
}

@media (max-width: 1010px) {
  .main-nav ul {
    gap: 18px;
    margin-left: 0;
  }
  .cta-button {
    margin-left: 20px;
    padding: 12px 20px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-button {
    display: none !important;
  }
  .main-nav {
    padding: 19px 0 14px 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}

/* ================================
   HERO/BANNER SECTION
   ================================ */
.hero {
  background: linear-gradient(135deg, #fff 82%, #eaeaea 100%);
  padding: 40px 0 60px 0;
  margin-bottom: 40px;
}
.hero .container {
  min-height: 300px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.55rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.hero .subtitle {
  color: var(--color-gray-700);
  margin-bottom: 28px;
}
.hero .cta-button {
  margin-left: 0;
}

/* ================================
   FEATURES, SERVICES, STEPS, FAQ
   ================================ */
.features, .services, .steps, .tips, .faq, .why-us, .team, .confirmation, .legal, .review-cta, .contact {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 28px -8px rgba(44,45,49,0.06);
  display: flex;
}
.features .text-section, .services .text-section,
.steps .text-section, .tips .text-section, .faq .text-section, .why-us .text-section, .team .text-section, .confirmation .text-section, .review-cta .text-section, .contact .text-section, .legal .text-section {
  max-width: 740px;
  margin: 0 auto;
}
.services .cta-button, .contact .cta-button, .steps .cta-button, .review-cta .cta-button, .confirmation .cta-button {
  margin-top: 34px;
  margin-left: 0;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 42px 0 28px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.99rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.16s;
}
.footer-contact a:hover {
  color: var(--color-accent);
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--color-dark);
  box-shadow: 0 -2px 20px 0 rgba(22,28,38,0.11);
  z-index: 9999;
  padding: 25px 24px 23px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  border-top: 1.5px solid var(--color-gray-100);
  transition: transform 0.25s;
  will-change: transform;
}
#cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
#cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--color-primary);
  flex: 1 1 220px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  border: none;
  padding: 11px 22px;
  margin-left: 0;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 6px 0 rgba(33,43,59,0.06);
}
.cookie-btn:not(:last-child) {
  margin-right: 9px;
}
.cookie-btn.settings {
  background: var(--color-gray-100);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-btn.settings:hover { background: var(--color-gray-500); color: #fff; }
.cookie-btn.accept { background: var(--color-accent); color: #fff; }
.cookie-btn.accept:hover { background: #222B3B; color: #fff; }
.cookie-btn.reject {
  background: var(--color-gray-900);
  color: #fff;
}
.cookie-btn.reject:hover {
  background: var(--color-accent);
}

/* COOKIE MODAL POPUP */
#cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,38,43,0.44);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #fff;
  color: var(--color-dark);
  padding: 40px 26px;
  max-width: 388px;
  width: 96%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeInModal 0.4s cubic-bezier(.25,.95,.45,1.2);
  position: relative;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(60px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
#cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-toggle {
  width: 44px; height: 26px;
  border-radius: 26px;
  background: #e3e3e3;
  position: relative;
  display: inline-block;
  transition: background 0.2s;
  margin-right: 2px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute; left: 2px; top: 2px;
  height: 22px; width: 22px;
  background: #bbb;
  border-radius: 50%;
  transition: background 0.2s, left 0.22s;
}
.cookie-toggle input:checked + .slider {
  left: 20px;
  background: var(--color-accent);
}
.cookie-category.essential .cookie-toggle {
  pointer-events: none;
  background: #444;
}
.cookie-category.essential .slider {
  background: var(--color-gray-800);
}
.cookie-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
#cookie-modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: none;
  border: none;
  color: var(--color-gray-600);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
}
#cookie-modal-close:hover {
  color: var(--color-accent);
}

/* ================================
   CARD & MISCELLANEOUS COMPONENTS
   ================================ */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.card {
  min-width: 270px;
  flex: 1 1 270px;
}

.address-information, .opening-hours, .email-link, .map-embed {
  margin-bottom: 20px;
}
.address-information h2, .opening-hours h2, .email-link h2, .map-embed h2 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

/* ================================
   SPACING HELPERS/MISC
   ================================ */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }

/* ================================
   VISUALS & HIERARCHY
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 24px -10px rgba(44,45,49,0.05);
}
section:last-child {
  margin-bottom: 0;
}

/* ================================
   MICRO-INTERACTIONS
   ================================ */
button, a.cta-button, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.16s;
}
button:active, .cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .footer-contact, .footer-logo, .footer-menu {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.40rem; }
  .hero { padding: 20px 0 32px 0; margin-bottom: 18px; }
  section, .features, .services, .steps, .tips, .faq, .why-us, .team, .confirmation, .legal, .review-cta, .contact {
    padding: 25px 6px;
    border-radius: var(--radius-xs);
    margin-bottom: 32px;
  }
  .container { padding-left: 9px; padding-right: 9px; }
  .content-wrapper { gap: 0; }
  .card-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-menu, .footer-contact, .footer-logo { min-width: 0; }
  .testimonial-card { padding: 18px 12px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.04rem; }
  h3 { font-size: 1rem; }
  section, .features, .services, .steps, .tips, .faq, .why-us, .team, .confirmation, .legal, .review-cta, .contact {
    padding: 13px 2px 22px 2px;
  }
  .testimonial-card { font-size: 0.99rem; }
  #cookie-banner { font-size: 0.98rem; padding: 17px 6px 16px 7px; }
}

/* ================================
   ACCESSIBILITY
   ================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ================================
   PRINT
   ================================ */
@media print {
  header, footer, #cookie-banner, #cookie-modal-overlay, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #181A1E !important; }
}
