/* =======================================
   CSS RESET & NORMALIZE (Mobile First)
======================================= */
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: #F5F3EA;
  color: #3B3531;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ==============================
   FONT IMPORTS FOR RETRO LOOK
============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Grandstander:wght@500;700&display=swap'); /* More retro option */

:root {
  --primary: #15507A;
  --secondary: #E6EFF6;
  --accent: #FDB927;
  --beige-bg: #F5F3EA;
  --retro-red: #D6423A;
  --retro-blue: #387CA4;
  --retro-dark: #3B3531;
  --retro-green: #7EB77F;
  --retro-brown: #BB9474;
  --transition: 0.22s cubic-bezier(.55,.05,.52,.94);
  --shadow-main: 0 2px 20px rgba(69,54,25,0.08), 0 2px 8px rgba(221,182,129,0.10);
  --radius-card: 18px;
}

/* =================================
   GLOBAL TYPOGRAPHY
================================= */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--retro-dark);
  background: var(--beige-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Grandstander','Montserrat', Arial, sans-serif;
  text-shadow: 0 1px 0 #fff5db;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: -0.03em;
}
h1 { font-size: 2.4rem; font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 1.7rem; font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.18; }
h4 { font-size: 1.1rem; font-weight: 700; }
strong { font-weight: 700; }
p, ul, ol, li, a, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: inherit;
}

/* Retro accents for headings */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 7px;
}

/* Nostalgic Pattern Background for .hero & CTA */
.hero, .call-to-action {
  background-color: var(--secondary);
  background-image: repeating-linear-gradient(135deg, rgba(253,185,39,0.11) 0 16px,rgba(21,80,122,0.02) 16px 32px);
  border-bottom: 8px solid var(--accent);
}

/* ===============================
   LAYOUT & SPACING
=============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card layouts */
.card-container,
.property-cards,
.testimonial-slider,
.testimonial-list,
.project-summaries,
.tipps-grid,
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .property-card, .testimonial-card, .next-steps-info, .tipps-grid > div, .article-list article {
  background: #fffdfa;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px rgba(197,152,73,0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 25px 20px 22px 24px;
  border: 2px solid var(--retro-brown);
}

.property-card, .testimonial-card, .article-list article {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 360px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  justify-content: flex-start;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 18px 23px 18px;
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: var(--shadow-main);
  border: 2px dashed var(--retro-green);
  min-width: 240px;
  margin-bottom: 20px;
}
.feature-grid li img {
  margin-bottom: 16px;
  width: 38px;
  height: 38px;
  filter: sepia(0.4) hue-rotate(-25deg) brightness(0.9);
}
.feature-grid li h3 {
  margin-bottom: 9px;
  color: var(--retro-red);
  letter-spacing: 0.04em;
}
.key-outcomes-list {
  margin-bottom: 8px;
}
.key-outcomes-list li {
  list-style: square inside;
  color: var(--retro-dark);
  margin-left: 12px;
  margin-bottom: 6px;
}

/* Alignment Patterns */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #222;
  border: 2px solid var(--retro-blue);
  box-shadow: 0 2px 18px rgba(56,124,164,0.07);
  border-radius: 17px;
  min-width: 245px;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  color: #3b3531;
}
.testimonial-card strong { color: var(--primary); }


/* ===============================
   RETRO BUTTONS & LINKS
=============================== */
.cta, .property-filters button, .service-accordion details summary,
.cookie-banner button, .cookie-modal button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Grandstander', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: 27px;
  border: 2px solid var(--primary);
  box-shadow: 1px 3px 0 var(--primary), 0 4px 18px #fed68129;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  text-shadow: 0 2px 10px #fff19a66;
}
.cta:hover,
.property-filters button:hover,
.service-accordion details summary:hover,
.cookie-banner button:hover,
.cookie-modal button:hover {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 1px 3px 0 var(--accent), 0 4px 18px #15507a17;
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
}

nav .cta, .footer-menu .cta {
  margin-left: 16px;
  font-size: 1.03em;
}

/* Simple retro-style links for footers and inline links */
.footer-menu a, .footer-nav a {
  color: var(--primary);
  font-weight: 600;
  padding: 0 11px;
  text-decoration: underline wavy var(--accent);
  transition: color var(--transition);
}
.footer-menu a:hover { color: var(--retro-red); }

.main-nav a,
.mobile-nav a {
  padding: 9px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  color: #22344a;
  transition: background var(--transition), color var(--transition);
  background: none;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ===============================
   HEADER NAVBAR & LOGO
=============================== */
header {
  background: #fffdfa;
  border-bottom: 5px solid var(--retro-brown);
  box-shadow: 0 3px 12px rgba(153,87,34,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
header img {
  height: 42px;
  width: auto;
}
header .cta {
  margin-left: 20px;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  padding: 60px 0 35px 0;
  margin-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--retro-red);
}
.hero p {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ==========================
   CALL TO ACTION
========================== */
.call-to-action {
  margin: 60px 0 40px 0;
  border-radius: 22px;
  background-color: #fffcf4;
  box-shadow: 0 3px 40px #d4be9115;
  border: 4px dashed var(--accent);
}

/* ==========================
   TESTIMONIALS
========================== */
.testimonial-slider, .testimonial-list {
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card p { margin-bottom: 10px; }

/* ==========================
   PROPERTY CARDS (ANGEBOTE)
========================== */
.property-cards {
  margin: 22px 0 0 0;
  justify-content: flex-start;
}
.property-card {
  border: 2.5px double var(--retro-blue);
  background: #fffdfa;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.property-card:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 16px #b953005b;
  transform: translateY(-3px) scale(1.02) rotate(-1deg);
}
.property-card h3 {
  font-size: 1.19rem;
  margin-bottom: 10px;
  color: var(--retro-brown);
}
.property-card ul {
  margin-bottom: 6px;
}
.property-card p {
  font-size: 1rem;
}

/* Search Form Styles */
.property-filters {
  margin-bottom: 24px;
  background: #fffdfa;
  border: 2px solid var(--accent);
  border-radius: 15px;
  box-shadow: var(--shadow-main);
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.search-form label {
  font-weight: 700;
  color: var(--primary);
}
.search-form input,
.search-form select {
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 7px;
  border: 1.7px solid var(--retro-brown);
  background: #fffefa;
}
.search-form button {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-family: 'Grandstander','Montserrat',sans-serif;
  padding: 8px 22px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  box-shadow: 1px 2px 0 var(--primary), 0 3px 12px #fdc74f17;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.search-form button:hover {
  background: var(--primary);
  color: var(--accent);
}

/* ==========================
   ACCORDION (Dienstleistungen)
========================== */
.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-accordion details {
  border-radius: 10px;
  border: 2px dashed var(--retro-blue);
  background: #f5f9fa;
  margin-bottom: 7px;
}
.service-accordion details summary {
  cursor: pointer;
  font-family: 'Grandstander','Montserrat',sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 9px 18px;
  color: var(--retro-red);
  background: transparent;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.service-accordion details[open] summary {
  background: var(--accent);
  color: var(--primary);
}
.service-accordion .text-section {
  padding: 0 19px 15px 25px;
  color: var(--retro-dark);
}


/* ==========================
   FOOTER
========================== */
footer {
  background: #EBE5DB;
  border-top: 4px solid var(--retro-brown);
  margin-top: 40px;
  padding-top: 17px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-brand img,
.footer-top img {
  height: 32px;
  width: auto;
}
.footer-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 0;
  border-top: 2px dotted var(--retro-brown);
  margin-top: 13px;
}
.contact-short span {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 3px;
  font-size: 0.99rem;
}
.contact-short strong {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================
   FLEX-BASED RESPONSIVE
========================== */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
  .footer-top,.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper, .card-container, .property-cards, .feature-grid, .testimonial-slider, .testimonial-list, .project-summaries, .tipps-grid, .article-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .property-card, .testimonial-card, .article-list article {
    min-width: 220px;
    max-width: 100%;
  }
  .section, .hero, .call-to-action {
    padding: 26px 6vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    gap: 7px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    font-size: 2.1rem;
    color: var(--primary);
    background: #ffedbf;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    border: 2px solid var(--accent);
    justify-content: center;
    z-index: 1002;
    transition: background var(--transition), color var(--transition);
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.07rem; }
  h3 { font-size: 0.99rem; }
  .section, .hero, .call-to-action {
    padding: 18px 2vw;
  }
  .card, .property-card, .testimonial-card { padding: 17px 9px 15px 11px; }
}

/* ===============================
   MOBILE MENU & ANIMATION
=============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fffefaed;
  box-shadow: 0 8px 80px #875e0644, 0 2px 20px #32323215;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(0.79,0.14,0.15,0.86);
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform .33s cubic-bezier(0.79,0.14,0.15,0.86);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  margin: 19px 18px 10px 0;
  width: 48px; height: 48px;
  border: 2px solid var(--primary);
  box-shadow: 1px 3px 0 var(--primary), 0 2px 11px #fdc74f19;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 1200;
}
.mobile-menu-close:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 93vw;
  max-width: 350px;
  margin: 0 0 0 33px;
  gap: 11px;
  padding-top: 19px;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-family: 'Grandstander','Montserrat',sans-serif;
  color: var(--primary);
  padding: 11px 9px;
  margin-bottom: 6px;
  background: none;
  border-radius: 9px;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a.cta {
  color: var(--accent);
  background: var(--primary);
  border: 1.7px solid var(--accent);
  margin-top: 14px;
  text-shadow: 0 2px 10px #fff6e266;
}
.mobile-nav a.cta:hover {
  background: var(--accent) !important;
  color: var(--primary) !important;
}

/* Overlay effect for mobile menu */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
  .mobile-menu {
    display: flex;
  }
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fffdfa;
  border-top: 4px solid var(--accent);
  box-shadow: 0 -2px 18px #4b270a19;
  padding: 16px 20px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  animation: slideBannerIn .7s cubic-bezier(.7,0,.29,1) 1;
  min-height: 48px;
}
@keyframes slideBannerIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0; flex: 1 1 auto;
}
.cookie-banner button {
  margin-left: 11px;
  min-width: 117px;
}

/* Cookie modal */
.cookie-modal-bg {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2100;
  background: #222a;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal {
  background: #fffefa;
  border: 4px solid var(--accent);
  border-radius: 17px 17px 0px 0px;
  padding: 34px 29px 24px 29px;
  min-width: 320px;
  max-width: 96vw;
  width: 410px;
  box-shadow: 0 7px 34px #a87a2215;
  animation: slideModalUp .48s cubic-bezier(.56,.14,.59,.89) 1;
}
@keyframes slideModalUp {
  from { opacity: 0; transform: translateY(120px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-family: 'Grandstander', 'Montserrat', sans-serif;
  margin-bottom: 18px;
}
.cookie-modal .cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-settings-list label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--retro-dark);
  font-family: 'Open Sans',sans-serif;
}
.cookie-settings-list input[type=checkbox] {
  accent-color: var(--retro-green);
  width: 18px; height: 18px;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal button {
  font-size: 1rem;
  border-radius: 22px;
  padding: 9px 24px;
}

/* Cookie banner close */
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 17px;
  font-size: 1.7rem;
  background: var(--accent);
  color: var(--primary);
  border: 1.4px solid var(--primary);
  border-radius: 50%;
  width: 33px; height: 33px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 9px #f7d98324;
  z-index: 2200;
}
.cookie-modal-close:hover {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width:600px) {
  .cookie-modal {
    min-width: 210px;
    max-width: 97vw;
    padding: 22px 8px 20px 15px;
    width: 98vw;
  }
}

/* =============================
   RETRO/EFFECTS DETAILS
============================= */
.card, .property-card, .testimonial-card, .feature-grid li {
  transition: box-shadow .19s, border-color .22s, transform .19s;
}
.card:hover, .feature-grid li:hover {
  box-shadow: 0 6px 18px #ba8b004a, 0 2px 15px #fde2b318;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.03) rotate(-1.6deg);
}

/* SHADOWS: subtle retro look */
.card, .property-card, .feature-grid li, .testimonial-card, .about-preview, .next-steps-info {
  box-shadow: 0 3px 20px #684c1555, 0 4px 4px #f2bc0111;
}

/* Decorative dashes for sections */
section > .container > .content-wrapper > h2, section > .container > .content-wrapper > h1 {
  border-left: 8px solid var(--retro-red);
  border-radius: 7px;
  padding-left: 16px;
  margin-bottom: 8px;
  background: linear-gradient(87deg,#ffd98518 10%, #ffd98513 70%);
}

/* About / Text Section Lists */
.text-section ul, .text-section ol, .faq-preview ul, .key-outcomes-list {
  margin-bottom: 14px;
  margin-left: 15px;
}
.text-section ul li, .faq-preview ul li, .key-outcomes-list li {
  list-style: disc inside;
  color: var(--retro-dark);
  margin-bottom: 7px;
}

/* FAQ Style / Ratgeber */
.faq-preview {
  background: #f9f5ee;
  border-radius: 13px;
  padding: 18px 17px;
  border: 1.5px solid var(--accent);
  margin-top: 17px;
}
.faq-preview h4 {
  color: var(--retro-red);
  margin-bottom: 12px;
}

/* Tipp Grid / Article List */
.tipps-grid {
  gap: 22px;
  margin: 24px 0 0 0;
}
.tipps-grid > div {
  min-width: 180px;
  background: #fffdfa;
  border-radius: 11px;
  border: 2px dashed var(--retro-green);
  box-shadow: 0 2px 12px #51873c13;
  padding: 12px 17px 16px 16px;
}

.article-list {
  gap: 20px;
  margin: 20px 0 0 0;
}
.article-list article {
  min-width: 219px;
  background: #fdf5f3;
  border-left: 7px solid var(--primary);
  border-radius: 10px;
  padding: 17px 14px 12px 22px;
  box-shadow: 0 2px 10px #acc4e667;
}
.article-list article h3 {
  margin-bottom: 9px;
  color: var(--retro-red);
}

/* Project Summaries (Referenzen) */
.project-summaries {
  gap: 20px;
  justify-content: flex-start;
  margin: 21px 0 15px 0;
}
.project-summaries > div {
  background: #fffefa;
  border: 2.5px solid var(--retro-brown);
  border-radius: 14px;
  padding: 15px 18px 22px 19px;
  box-shadow: 0 2px 10px #deb47513;
  min-width: 200px;
  max-width: 360px;
}
.project-summaries h3 {
  color: var(--retro-red);
  margin-bottom: 10px;
}

/* Client Logos (Referenzen) */
.client-logos {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 17px 0 2px 0;
}
.client-logos img {
  height: 40px;
  filter: sepia(0.15) hue-rotate(-14deg) brightness(0.93);
  opacity: 0.7;
  transition: opacity .22s;
}
.client-logos img:hover { opacity: 1; }

/* Map Embed (Kontakt) */
.map-embed {
  background: #fbf8e5;
  border: 2px dotted var(--accent);
  border-radius: 12px;
  padding: 14px 14px 17px 19px;
  margin-top: 14px;
}
.map-embed img {
  height: 60px;
  border-radius: 7px;
}
.map-embed a {
  color: var(--retro-red);
  font-weight: 700;
  font-family: 'Grandstander', 'Montserrat',sans-serif;
  font-size: 1rem;
}

/* Misc */
.next-steps-info {
  background: #fcf3d8;
  border: 2px solid var(--accent);
  border-radius: 12px;
  font-size: 1.03rem;
  color: #3b3531;
}

/* ============================
   SCROLLBAR (optional/retro)
============================ */
::-webkit-scrollbar {
  width: 10px;
  background: #ffecc8;
}
::-webkit-scrollbar-thumb {
  background: var(--retro-brown);
  border-radius: 11px;
  border: 2.5px solid #ffecc8;
}

/* ==========================
   ANIMATIONS
========================== */
.card, .property-card, .testimonial-card, .feature-grid li {
  will-change: box-shadow,transform;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.cta, .property-filters button, .service-accordion details summary, .cookie-banner button {
  will-change: background,box-shadow,color,transform;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}

/* ============================
   PRINT/SPECIAL CASES
============================ */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, header, footer { display: none !important; }
  main, section, .container { padding: 0 !important; margin: 0 !important; }
}
section {
  padding: 20px 0;
}
/* ========== END OF MAIN CSS ========== */
