/* CSS RESET & BASE TYPOGRAPHY */
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,
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-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F2F4F8;
  color: #1C2126;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #1C2126;
  transition: color 0.2s;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --color-primary: #1C2126;
  --color-secondary: #8C3B1E;
  --color-accent: #F2F4F8;
  --color-bg: #FFFFFF;
  --color-grey: #E4E6EA;
  --color-dark-grey: #3C434A;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 500; }
p, li, blockquote, cite {
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-secondary);
  padding-left: 14px;
  margin-bottom: 8px;
  color: #222;
}
cite {
  display: block;
  color: var(--color-dark-grey);
  font-size: 0.98rem;
  margin-top: 8px;
  font-style: normal;
}

/* BUTTONS & LINKS */
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(30,40,70,0.08);
  transition: background 0.19s, box-shadow 0.19s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #af5230;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(30,40,70,0.10);
}
.btn-link {
  color: var(--color-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
  background: none;
  padding: 3px 2px;
  font-size: 1rem;
  transition: color .18s;
  cursor: pointer;
}
.btn-link:hover { color: #5e2410; border-bottom-color: #5e2410; }

/* LAYOUT CONTAINER */
.container {
  width: 100%; max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(44,56,70,0.04);
  transition: box-shadow 0.2s;
}
.cta {
  background: var(--color-accent);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px rgba(140,59,30,0.07);
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(28,33,38,0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 20px;
  gap: 18px;
}
.logo { display: flex; align-items: center; }
.logo img {
  display: block; height: 46px; width: auto;
  max-height: 54px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 0;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  display: none;
  border-radius: 50%;
  color: var(--color-primary);
  transition: background .12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(250,252,255,.95);
  z-index: 2000;
  transition: transform 0.32s cubic-bezier(.55,.1,.75,.85);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  padding: 18px 22px 8px 22px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 8px;
  transition: color .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: #a63c16; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  align-items: center;
}
.mobile-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.18rem;
  padding: 14px 0;
  width: 100vw;
  text-align: center;
  border-bottom: 1px solid var(--color-grey);
  transition: background .11s, color .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(94deg,#f7fafc 50%, #f1f1ef 100%);
  border-radius: 0 0 34px 34px;
  margin-bottom: 56px;
  padding: 50px 0 56px 0;
  box-shadow: 0 2px 22px rgba(40,40,60,0.07);
}
.hero > .container { align-items: center; }
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 800px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 14px;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(44,50,50,0.05);
  padding: 24px 28px;
  width: 270px;
  min-width: 220px;
  min-height: 210px;
  transition: box-shadow .18s, transform .13s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 22px rgba(140,59,30,0.08);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

/* TEAM LIST FLEX */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 14px;
}
.team-list > div {
  flex: 1 1 250px;
  max-width: 320px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(100,100,105,0.04);
  padding: 20px 25px 18px 22px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 180px;
  transition: box-shadow .15s, transform .13s;
}
.team-list > div:hover {
  box-shadow: 0 8px 14px rgba(44,56,60,0.09);
  transform: scale(1.027);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44,56,60,0.09);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 640px;
}
.testimonial-card blockquote {
  font-size: 1.06rem;
  color: #222;
}
.testimonial-card cite {
  color: var(--color-secondary);
  font-weight: 600;
  font-style: normal;
  margin-left: 14px;
  font-size: 0.97rem;
}

/* SIMPLE FLEX CARDS (e.g., Galerie, Sammlerstücke) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px; margin-bottom: 16px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(60,70,70,0.04);
  padding: 22px 18px;
  position: relative;
  flex: 1 1 280px;
  max-width: 360px;
  min-width: 180px;
  transition: box-shadow .15s, transform .12s;
}
.card:hover {
  box-shadow: 0 8px 16px rgba(28,33,38,0.10);
  transform: translateY(-2px) scale(1.03);
}

/* CONTENT GRID */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FEATURE ITEM (for feature lists with icons) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
.feature-item img {
  width: 34px;
  height: 34px;
}

/* MAP-INFO FLEX */
.map-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(44,56,70,0.06);
  margin: 10px 0 16px 0;
}
.map-info img { width: 32px; height: 32px; }
.map-info span { font-size: 1rem; color:#222; }

/* CTA REUSE */
.cta h2 {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.16rem;
  margin-bottom: 13px;
  color: #222;
}

/* SECTION LISTS */
section ul {
  margin-bottom: 18px;
}
section ul li {
  position: relative;
  padding-left: 0;
  font-size: 1.04rem;
  margin-bottom: 12px;
  padding-bottom: 3px;
  color: #232526;
  display: flex;
  align-items: center;
  gap: 10px;
}
section ul li img {
  width: 28px;
  height: 28px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid var(--color-grey);
  padding: 0;
  margin-top: 60px;
  font-size: 0.99rem;
  color: var(--color-dark-grey);
}
footer .container {
  padding: 40px 20px 22px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px; margin-bottom: 12px;
  align-items: center;
}
.footer-nav a {
  color: var(--color-dark-grey);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  border-bottom: 1px solid transparent;
  padding: 3px 0;
  transition: color .14s, border-color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}
.footer-contact span {
  color: #3C434A;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-right: 18px;
  margin-bottom: 0;
}
.footer-contact img { width: 19px; height: 19px; opacity:.85; }
footer > .container > span {
  font-size: 0.96rem;
  color: #ABABAB;
  margin-top: 6px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1020px) {
  .container { max-width: 96vw; }
  .feature-grid > div, .team-list > div, .card {
    width: 96vw;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
}
@media (max-width: 768px) {
  body { font-size: 0.99rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .header .container {
    flex-direction: row;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .team-list, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
  }
  .container {
    padding: 0 10px;
  }
  .cta { padding: 28px 8px; }
  .section { padding: 23px 8px; }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.18rem; }
  header .container { min-height: 60px; padding: 0 5px; }
  .logo img { height: 32px; max-height: 34px; }
  .card, .feature-grid > div, .team-list > div {
    padding: 14px 8px;
    border-radius: 9px;
  }
  .testimonial-card { padding: 10px 6px; border-radius: 12px; }
  .footer-contact, .footer-nav { flex-direction: column; gap:11px; }
  .map-info { flex-direction: column; gap: 6px; padding: 8px; }
}

/* MICRO-INTERACTIONS & HOVERS */
a, button {
  outline: none;
  transition: color 0.15s, background 0.15s;
}
button:focus, a:focus {
  outline: 2px solid var(--color-secondary); outline-offset: 3px;
}

/* MISC ELEMENTS */
::-webkit-input-placeholder { color: #AAA; }
::-moz-placeholder { color: #AAA; }
:-ms-input-placeholder { color: #AAA; }
::placeholder { color: #AAA; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--color-grey);
  box-shadow: 0 -3px 32px rgba(28,33,38,0.09);
  z-index: 2999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 18px 24px;
  font-size: 1rem;
  flex-wrap: wrap;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p { color: #232526; margin-bottom: 0; }
.cookie-banner .cookie-btn {
  background: var(--color-secondary);
  color:#fff;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 23px;
  padding: 8px 24px; margin: 0 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s, transform .1s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-secondary);
}
.cookie-banner .cookie-btn.reject {
  background: #ccc; color: #222;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 3px 11px rgba(140,59,30,0.09);
}
@media (max-width:650px) {
  .cookie-banner { flex-direction: column; gap: 10px; align-items: flex-start; padding: 17px 10px; }
  .cookie-banner .cookie-btn { width: 100%; margin: 3px 0; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;top:0;left: 0;right: 0;bottom: 0;
  background: rgba(44,48,56,0.26);
  z-index:3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active { display: flex; }
.cookie-modal {
  background:#fff;
  border-radius: 20px;
  min-width: 310px;
  max-width: 95vw;
  max-height: 90vh;
  box-shadow: 0 7px 20px rgba(44,48,68,0.18);
  padding: 34px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.09rem;
  z-index: 3001;
  animation: mmodal-in .36s cubic-bezier(.55,.1,.75,.85);
}
@keyframes mmodal-in {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-accent);
  border-radius: 11px;
  padding: 12px 12px 10px 13px;
  font-size: 1.01rem;
  margin-bottom: 0;
}
.cookie-modal .toggle-switch {
  width: 46px; height: 22px;
  background: #DDD;
  border-radius: 36px;
  position: relative;
  transition: background .14s;
  flex-shrink: 0;
}
.cookie-modal .toggle-switch[data-on='true'] {
  background: var(--color-secondary);
}
.cookie-modal .toggle-knob {
  content: "";
  display: block;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1.5px; top: 1px;
  transition: left .2s;
  box-shadow: 0 1px 4px rgba(40,40,60,0.06);
}
.cookie-modal .toggle-switch[data-on='true'] .toggle-knob {
  left: 24px;
}
.cookie-modal .btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 7px 18px;
  font-size: 1rem;
}
.cookie-modal .cookie-btn.close {
  background: #ccc;
  color: #222;
}
@media (max-width:500px) {
  .cookie-modal { padding: 20px 6px 15px 8px; min-width: 0; }
  .cookie-modal .cookie-btn { width: 100%; }
}

/* MISC UTILITIES */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 4px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-3 { margin-bottom: 24px !important; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 18px; }

/* A11Y FOCUS STYLE FOR BUTTONS & LINKS */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* -----------------------------------
FORCED FLEXBOX ALIGNMENT PATTERNS
----------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* NO ABSOLUTE for content, NO GRID / COLUMNS per requirements */
/* No display: grid or columns used anywhere */
