/* ======================================================
  Luminous Myst – Industrial Modern Flexbox Design System
==========================================================
RESET & BASELINE 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #1A1A20;
  color: #E8E6E3;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #B1A36B;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,.2,.2,1);
}
a:focus, a:hover {
  color: #E8E6E3;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #39383F;
  margin: 24px 0;
}

/* ======= CUSTOM SCROLLBAR (modern feel) ======= */
::-webkit-scrollbar {
  width: 10px;
  background: #212128;
}
::-webkit-scrollbar-thumb {
  background: #39383F;
  border-radius: 8px;
}

/* ======= FONT FACE LOAD Fallbacks ======= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

/* ===========================
  TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #E8E6E3;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.13rem;
  margin-bottom: 12px;
}
p, ul, ol, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #E8E6E3;
  margin-bottom: 16px;
}
.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #B1A36B;
  margin-bottom: 32px;
  letter-spacing: 0.015em;
}

blockquote {
  font-style: italic;
  font-size: 1.15rem;
  border-left: 4px solid #B1A36B;
  padding-left: 20px;
  color: #1A1A20;
  background: #E8E6E3;
  border-radius: 6px 0 0 6px;
}

/* ===========================
  LAYOUT MODULES & CONTAINERS
=========================== */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
  box-shadow: none;
}
.accent-bg {
  background: #23232B;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(18,16,13,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  background: #23232B;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(16,16,16,0.11);
  transition: transform 0.16s, box-shadow 0.16s;
  padding: 32px 28px;
  border: 1px solid #39383F;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 4px 28px 0 #181817, 0 1.5px 2px #B1A36B;
  transform: translateY(-6px) scale(1.01);
  border-color: #B1A36B;
}

.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;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background: #E8E6E3;
  color: #1A1A20;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(16,16,16,0.08);
  margin-bottom: 20px;
  border: 1px solid #B1A36B;
}
.testimonial-card blockquote {
  background: none;
  color: #23232B;
  border-left: 4px solid #B1A36B;
  padding-left: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #23232B;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.star-rating-summary {
  margin-top: 28px;
  color: #B1A36B;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 200px;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: #23232B;
  padding: 28px;
  border-radius: 13px;
  margin-bottom: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.opening-hours {
  margin: 20px 0 16px 0;
  font-weight: 600;
  color: #B1A36B;
}

/* Section spacing - override for visual consistency */
section + section { margin-top: 24px; }

/* ===========================
  NAVIGATION & HEADER
=========================== */
header {
  width: 100%;
  background: #1A1A20;
  border-bottom: 1px solid #2C2C32;
  position: relative;
  box-shadow: 0 4px 18px -7px #19191b2e;
  z-index: 101;
}
.main-nav {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 17px 20px;
  gap: 18px;
}
.main-nav > a img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav li {
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E8E6E3;
  font-size: 1.02rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 6px 8px 6px;
  letter-spacing: 0.04em;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #23232B;
  color: #B1A36B;
}
/* CTA in nav */
.main-nav .cta {
  margin-left: 24px;
}

/* ===========================
  BUTTONS & CTA
=========================== */
.cta {
  display: inline-flex;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #23232B;
  background: #B1A36B;
  padding: 13px 30px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 9px 0 #1818123b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  align-items: center;
}
.cta:hover, .cta:focus {
  background: #E8E6E3;
  color: #1A1A20;
  box-shadow: 0 3px 16px 0 #150f07b3;
}
.cta.primary {
  background: #B1A36B;
  color: #23232B;
}
.cta.primary:hover {
  background: #23232B;
  color: #B1A36B;
  border: 1.5px solid #B1A36B;
}

/* ================================
 MOBILE MENU: HAMBURGER NAVIGATION
=================================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 24px;
  z-index: 120;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #B1A36B;
  cursor: pointer;
  transition: color 0.18s;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #E8E6E3;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #1A1A20;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.9,.13,.35,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 0 28px;
  box-shadow: -8px 0 42px -10px #150f07b8;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.8rem;
  color: #B1A36B;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 28px;
  margin-right: 2px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E8E6E3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 8px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #B1A36B;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 10px 3px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23232B;
  color: #E8E6E3;
}

/* Hide desktop navigation on mobile, show hamburger */
@media (max-width: 990px) {
  .main-nav ul,
  .main-nav .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===========================
  FOOTER
=========================== */
footer {
  background: #18181C;
  padding: 44px 0 28px 0;
  border-top: 1.5px solid #23232B;
  margin-top: 60px;
  box-shadow: 0 -2px 30px 0 rgba(18,16,13,0.13);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 0 20px;
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 12px;
}
footer nav a {
  font-size: 0.96rem;
  color: #B1A36B;
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.18s;
  letter-spacing: 0.027em;
}
footer nav a:hover, footer nav a:focus {
  color: #E8E6E3;
}
.branding-contact {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
  padding: 0 20px;
}
.branding-contact img {
  width: 48px;
  height: auto;
}
.brand-address, .brand-email, .brand-hours {
  font-size: 0.98rem;
  color: #E8E6E3;
  margin-right: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.85;
}
.brand-hours {
  color: #B1A36B;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .branding-contact {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}

/* =========================
  HOMEPAGE BENEFITS
========================= */
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 20px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.benefit-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #23232B;
  border-radius: 14px;
  min-width: 185px;
  max-width: 270px;
  padding: 26px 22px 20px 22px;
  gap: 13px;
  box-shadow: 0 2px 12px 0 rgba(16,16,16,0.11);
  border-left: 3.5px solid #B1A36B;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.benefit-list li:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 22px 0 #1818174a;
}
.benefit-list img {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}


/* =========================
  SERVICE PREVIEWS & LISTS
========================== */
.service-preview-list, .service-list, .service-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin-bottom: 24px;
}
.service-preview-list li,
.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #23232B;
  border-radius: 13px;
  padding: 24px 20px 16px 20px;
  box-shadow: 0 2px 8px 0 rgba(16,16,16,0.09);
  min-width: 180px;
  max-width: 280px;
  font-size: 1rem;
}
.service-preview-list img, .service-list img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.service-list span {
  color: #B1A36B;
  font-size: 0.99rem;
  font-weight: 600;
}
.service-benefit-list li {
  color: #B1A36B;
  font-size: 1rem;
  padding-left: 14px;
  margin-left: 0;
  font-weight: 500;
}

.service-accordion {
  background: #212128;
  border-radius: 13px;
  padding: 26px 20px 12px 20px;
  margin-top: 34px;
  box-shadow: 0 2px 11px 0 rgba(16,16,16,0.09);
  color: #E8E6E3;
}
.service-accordion h2 {
  font-size: 1.15rem;
  margin-bottom: 13px;
  color: #B1A36B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.service-accordion ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.service-accordion li {
  flex: 1 1 160px;
  font-size: 1rem;
}

/* ================================
  USP, AWARDS & CATEGORY GRIDS
================================== */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 22px;
  margin-bottom: 18px;
}
.usp-list li {
  background: #23232B;
  border-radius: 13px;
  padding: 20px 18px;
  color: #B1A36B;
  font-size: 1rem;
  min-width: 180px;
  max-width: 280px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px 0 rgba(16,16,16,0.08);
  font-weight: 500;
}

.category-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 16px;
}
.category-overview-grid li {
  background: #23232B;
  border-radius: 12px;
  min-width: 140px;
  max-width: 206px;
  padding: 20px 18px;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 1.01rem;
  color: #B1A36B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 3px 0 rgba(16,16,16,0.12);
}
.category-overview-grid img {
  height: 25px;
  width: 25px;
}

.highlighted-pieces-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E8E6E3;
}

/* ===========================
  BLOG PREVIEW CARDS
=========================== */
.article-preview-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.article-card {
  flex: 1 1 320px;
  background: #23232B;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(16,16,16,0.10);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
  border: 1px solid #39383F;
  min-width: 240px;
  max-width: 360px;
  transition: box-shadow 0.19s, border 0.18s;
}
.article-card h3 {
  color: #E8E6E3;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.article-card p {
  color: #B1A36B;
  font-size: 1.03rem;
}
.article-card a {
  align-self: flex-end;
  color: #B1A36B;
  font-size: 1.06rem;
  font-weight: 600;
  background: none;
  border-radius: 6px;
  padding: 4px 6px;
  transition: background 0.18s, color 0.18s;
}
.article-card a:hover, .article-card a:focus {
  background: #39383F;
  color: #E8E6E3;
}
.article-card:hover {
  box-shadow: 0 4px 22px 0 #150f078f;
  border: 1.4px solid #B1A36B;
}

.post-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.post-categories-grid span {
  background: #23232B;
  color: #B1A36B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 16px;
  letter-spacing: 0.035em;
  margin-bottom: 5px;
}

/* ===========================
  ANKAUF STEPS
=========================== */
.ankauf-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
  counter-reset: ankaufsteps;
  padding-left: 0;
}
.ankauf-steps li {
  background: #23232B;
  border-left: 4px solid #B1A36B;
  padding: 14px 14px 14px 24px;
  border-radius: 13px;
  font-size: 1rem;
  color: #E8E6E3;
  margin-bottom: 3px;
  list-style: none;
}

/* ===========================
  CONTACT & DATENSCHUTZ LISTS
=========================== */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-list dt {
  font-weight: 700;
  color: #B1A36B;
  margin-top: 10px;
}
.contact-list dd {
  color: #E8E6E3;
  margin-left: 0px;
  margin-bottom: 6px;
}

/* =============================
  COOKIE CONSENT BANNER + MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23232B;
  color: #E8E6E3;
  z-index: 9999;
  box-shadow: 0 -4px 38px 0 rgba(18,16,13,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-top: 2px solid #B1A36B;
  transition: transform 0.33s cubic-bezier(.7,.2,.23,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1 1 320px;
  margin-right: 18px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #B1A36B;
  color: #23232B;
  border: none;
  border-radius: 7px;
  padding: 9px 22px;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button.cookie-settings {
  background: #39383F;
  color: #B1A36B;
  border: 1.1px solid #B1A36B;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #E8E6E3;
  color: #1A1A20;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #B1A36B;
  color: #23232B;
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(34,34,37, 0.82);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s cubic-bezier(.6,.2,.23,1);
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #23232B;
  color: #E8E6E3;
  width: 96vw;
  max-width: 400px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 33px 0 rgba(17,15,13,0.20);
  padding: 32px 26px 26px 26px;
  margin-bottom: 0;
  animation: cookieModalUp 0.46s cubic-bezier(.8,.2,.36,1);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@keyframes cookieModalUp {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: #B1A36B;
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  margin-bottom: 13px;
}
.cookie-modal .category-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .category-option input[type='checkbox'] {
  accent-color: #B1A36B;
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  background: none;
  color: #B1A36B;
  border: none;
  font-size: 1.27rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 0 3px;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #E8E6E3;
}

/* ===============================
  RESPONSIVE DESIGN
================================ */
@media (max-width: 1160px) {
  .container, .main-nav {
    max-width: 100vw;
  }
}
@media (max-width: 991px) {
  .section { padding: 32px 10px; }
  .container { width: 97%; }
  .main-nav { padding: 16px 10px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { margin-bottom: 38px; padding: 21px 3px; }
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.08rem; }
  .benefit-list, .service-preview-list, .service-list, .service-benefit-list, .usp-list, .category-overview-grid, .article-preview-cards, .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 9px 14px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-modal { padding: 22px 7px; }
}

/* ===========================
  ANIMATION CLASSES
=========================== */
.fade-in {
  animation: fadeIn 0.49s cubic-bezier(.4,.29,.23,1.08);
}
@keyframes fadeIn {
  from { opacity:0 }
  to { opacity:1 }
}

/* ===========================
  MICRO-INTERACTIONS
=========================== */
.card, .article-card, .benefit-list li, .service-list li, .service-preview-list li {
  transition: box-shadow 0.16s, border 0.18s, transform 0.18s;
}

.cta, .cta.primary, .cookie-banner button {
  transition: background 0.19s, color 0.17s, box-shadow 0.17s;
}

/* ===========================
  MISCELLANEOUS
=========================== */
.feature-tag {
  color: #E8E6E3;
  background: #B1A36B;
  border-radius: 9px;
  padding: 3px 14px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.019em;
}
.founder-note {
  font-style: italic;
  color: #B1A36B;
  margin-top: 11px;
  font-size: 1.04rem;
}

.accent-bg img[alt*='Garantie'] {
  width: 46px;
  height: auto;
  margin-top: 13px;
}

/* ===========================
  PRINT
=========================== */
@media print {
  *, *:before, *:after { background: #fff !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
