/* =======================================================
   Synthexis Dream Renovierung CSS — Elegant Classic Style
   Brand colors: #224052 (Primary), #F4F4F4 (Secondary), #D1A35C (Accent)
   Typography: 'Montserrat', 'Roboto', Georgia, Times New Roman, serif
   Flexbox layouts ONLY — NO CSS Grid/Columns
========================================================= */

/*************************
    RESET & NORMALIZE
*************************/
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {font-size: 16px;}
body {
  line-height: 1.6;
  background: #F4F4F4;
  color: #224052;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
  border: 0;
}
ol, ul {
  list-style: none;
}
a {color: inherit; text-decoration: none; transition: color .2s ease;}

/*************************
    BRAND TYPOGRAPHY
*************************/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, Times, serif;
  color: #224052;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.45rem;
  font-weight: 600;
}
h4 {font-size: 1.2rem;}

p, li, address, span, label {
  font-family: 'Roboto', Georgia, serif;
  color: #224052;
  font-size: 1.08rem;
  line-height: 1.68;
}
.subheadline {
  font-size: 1.25rem;
  font-style: italic;
  color: #4A5C67;
  margin-bottom: 20px;
}
b, strong {
  font-weight: 700;
  color: #224052;
}

/***************************
    LAYOUT CONTAINERS
***************************/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
}

/**************************
    HEADER & NAVIGATION
**************************/
header {
  background: #fff;
  border-bottom: 1px solid #e3e1dc;
  padding: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 30px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #224052;
  font-weight: 500;
  padding: 7px 7px 7px 7px;
  transition: color 0.2s;
  border-radius: 3px;
}
nav a:hover, nav a:focus {
  color: #D1A35C;
  background: #F4F4F4;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', serif;
  background: #224052;
  color: #fff !important;
  font-weight: bold;
  border-radius: 28px;
  padding: 11px 30px;
  margin-left: 22px;
  font-size: 1.09rem;
  letter-spacing: .03em;
  box-shadow: 0 2px 14px 0 rgba(34,64,82,0.08);
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D1A35C;
  color: #224052 !important;
  box-shadow: 0 6px 30px 0 rgba(209,163,92,0.10);
}

/*********************************
    MOBILE NAVIGATION (Hamburger)
**********************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 400;
  background: #fff;
  color: #224052;
  border: 1px solid #e3e1dc;
  border-radius: 7px;
  font-size: 2.2rem;
  padding: 8px 18px 7px 18px;
  box-shadow: 0 2px 8px 0 rgba(34,64,82,0.07);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D1A35C;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.39,.24,.21,1.04);
  box-shadow: -4px 2px 24px 0 rgba(34,64,82,.06);
  padding: 0 8vw;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: none;
  color: #224052;
  border: none;
  align-self: flex-end;
  margin-top: 2.3rem;
  margin-bottom: 2rem;
  margin-right: -4px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #D1A35C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #224052;
  font-family: 'Montserrat', serif;
  font-size: 1.23rem;
  font-weight: 700;
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0e8dd;
  text-align: left;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D1A35C;
  background: #F4F4F4;
}

@media (max-width: 1020px) {
  header .container {
    font-size: 0.98rem;
    gap: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .cta-btn {margin-left: 10px;}
  nav {gap: 13px;}
}
@media (max-width: 768px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header img {
    height: 34px;
  }
}

/*********************************************
    LAYOUT STRUCTURE, FLEXBOX & SECTIONS
*********************************************/
main {
  background: #F4F4F4;
}
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(34,64,82,.06);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/**************************************
    FLEXBOX SPACING PATTERN CLASSES
***************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 10px rgba(34,64,82,0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  padding: 28px 22px;
  transition: box-shadow .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(209,163,92,0.13);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}
.testimonial-card {
  background: #F4F4F4;
  border-left: 6px solid #D1A35C;
  box-shadow: 0 0.5px 6px 0 rgba(34,64,82,.07);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 22px;
  font-family: 'Georgia', serif;
  color: #224052;
  min-width: 240px;
  max-width: 600px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(209,163,92,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 0 0;
}
.features-list li {
  background: #F4F4F4;
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 12px 25px 12px 15px;
  box-shadow: 0 1px 9px 0 rgba(34,64,82,.04);
  font-size: 1.11rem;
  margin-bottom: 6px;
  gap: 13px;
  min-width: 250px;
}
.features-list img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}

/************************************
    SERVICE BLOCKS & PRICING TABLES
************************************/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.service-block {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(34,64,82,.08);
  padding: 26px 20px 18px 20px;
  min-width: 225px;
  max-width: 340px;
  flex: 1 1 225px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-left: 4px solid #D1A35C;
  transition: box-shadow 0.22s;
}
.service-block:hover {
  box-shadow: 0 8px 30px 0 rgba(209,163,92,0.10);
}
.service-block img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.service-block h2, .service-block h3 {
  margin-bottom: 10px;
  color: #224052;
}
.service-block .service-price {
  color: #D1A35C;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .01em;
  margin-top: 10px;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 30px 0;
  justify-content: flex-start;
}
.price-block {
  background: #FAF9F5;
  border-radius: 15px;
  box-shadow: 0 1px 10px 0 rgba(34,64,82,0.07);
  padding: 28px 24px 22px 24px;
  flex: 1 1 230px;
  min-width: 225px;
  margin-bottom: 20px;
  border-left: 4px solid #D1A35C;
  transition: box-shadow .18s;
}
.price-block:hover {
  box-shadow: 0 9px 25px 0 rgba(209,163,92,0.09);
}
.price-block h2 {
  font-size: 1.21rem;
  margin-bottom: 13px;
}
.price-block .service-price {
  font-size: 1.1rem;
  color: #D1A35C;
  font-weight: 700;
  margin-bottom: 9px;
}

/*************************************
    TEXT SECTIONS, STYLED CONTENT
**************************************/
.text-section {
  margin-bottom: 22px;
}
.text-section ul {
  margin-top: 11px;
  padding-left: 18px;
  list-style-type: disc;
}
.text-section li {
  margin-bottom: 6px;
}
.contact-list {
  margin-top: 13px;
  margin-bottom: 18px;
  padding-left: 0;
}
.contact-list li {
  padding: 7px 0;
  font-size: 1.04rem;
  display: flex;
  gap: 6px;
}

/**************************
      BUTTONS & LINKS
**************************/
button, .cta-btn {
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  border-radius: 30px;
  transition: background .20s, color .18s, box-shadow .2s;
}
button:focus, .cta-btn:focus { outline: 2px solid #D1A35C; }
a.cta-btn { text-decoration: none; }
a {transition: color .15s;}
a:focus { outline: 2px solid #D1A35C; }

/****************************
    TESTIMONIALS / REFERENZEN
****************************/
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  color: #224052;
  margin-right: 12px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #7C7058;
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card img {
  height: 21px;
  width: 21px;
  margin-top: -3px;
}

/******************************/
    FOOTER
******************************/
footer {
  background: #224052;
  color: #fff;
  font-family: 'Georgia', serif;
  padding: 50px 0 22px 0;
  border-top: 1px solid #E1DFD5;
  margin-top: 80px;
  letter-spacing: 0.0125em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 15px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F4F4F4;
  font-family: 'Montserrat', serif;
  font-size: 1.09rem;
  font-weight: 500;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D1A35C;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  margin-top: 6px;
}
.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  transition: color .2s;
}
.footer-contact a:hover {
  color: #D1A35C;
}
footer address {
  font-style: normal;
  color: #ccc1b1;
  font-size: 0.97rem;
  margin-bottom: 6px;
}

/***************
    COOKIE BANNER
*****************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30000;
  background: #fff;
  color: #224052;
  border-top: 1px solid #E1DFD5;
  box-shadow: 0 -3px 28px 0 rgba(34,64,82,0.12);
  padding: 25px 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1.08rem;
  font-family: 'Georgia', serif;
  animation: cookieIn 0.53s cubic-bezier(.34,.56,.28,1.04);
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  background: #224052;
  color: #fff;
  border-radius: 7px;
  padding: 10px 26px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.01rem;
  border: none;
  margin-left: 10px;
  transition: background .18s, color .17s;
}
.cookie-banner .cookie-btn:hover {
  background: #D1A35C;
  color: #224052;
}
.cookie-banner .cookie-secondary {
  background: #fff;
  color: #224052;
  border: 1px solid #224052;
  margin-left: 0;
}
.cookie-banner .cookie-secondary:hover {
  background: #F4F4F4;
  color: #D1A35C;
  border-color: #D1A35C;
}

/******** COOKIE PREFS MODAL ******/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,64,82,0.24);
  z-index: 30001;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px 0 rgba(34,64,82,.18);
  padding: 36px 30px 28px 30px;
  max-width: 410px;
  width: 92vw;
  animation: modalIn .39s cubic-bezier(.34,.56,.28,1.04);
  font-family: 'Georgia', serif;
  color: #224052;
  position: relative;
}
@keyframes modalIn {
  0% { transform: translateY(-50px); opacity: 0 }
  100% { transform: translateY(0); opacity: 1 }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', serif;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Roboto', Georgia, serif;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 34px;
  height: 17px;
  border-radius: 13px;
  background: #E1DFD5;
  position: relative;
  outline: none;
  transition: background .25s;
}
.cookie-modal .cookie-toggle:checked {
  background: #D1A35C;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(34,64,82,0.08);
  position: absolute;
  left: 0;
  top: 0;
  transition: left .22s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 17px;
}
.cookie-modal .modal-close-btn {
  background: none;
  border: none;
  color: #224052;
  font-size: 1.85rem;
  position: absolute;
  top: 17px;
  right: 15px;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close-btn:hover {
  color: #D1A35C;
}
.cookie-modal .modal-save-btn {
  margin-top: 17px;
  background: #224052;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-weight: bold;
  border-radius: 8px;
  padding: 9px 25px;
  border: none;
  cursor: pointer;
  transition: background .22s;
}
.cookie-modal .modal-save-btn:hover {
  background: #D1A35C;
  color: #224052;
}

/********************************************
      RESPONSIVE & ACCESSIBILITY
*********************************************/
@media (max-width: 900px) {
  .container {max-width: 95vw;}
  .content-wrapper {max-width: 100%;}
  .services-list, .pricing-table {
    flex-wrap: wrap;
    gap: 15px;
  }
  .service-block,
  .price-block {
    max-width: 100%;
    min-width: 200px;
    flex: 1 1 100%;
  }
  .features-list {gap: 14px;}
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 5vw;
    margin-bottom: 44px;
  }
  .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 10px;
  }
  .services-list, .pricing-table {
    flex-direction: column;
    gap: 0;
  }
  .service-block, .price-block {
    margin-bottom: 16px;
    width: 100%;
  }
  .features-list {gap: 9px;}
  .testimonial-card {max-width: 100vw;}
}
@media (max-width: 575px) {
  h1 {font-size: 1.55rem;}
  h2 {font-size: 1.22rem;}
  h3 {font-size: 1.08rem;}
  footer {
    padding: 35px 0 14px 0;
    font-size: 1rem;
  }
  .footer-logo img {height: 34px;}
  .testimonial-card {padding: 14px; font-size: 0.99rem;}
  .service-block, .price-block {padding: 12px 10px 12px 12px;}
  section, .section {padding-left: 6px; padding-right: 6px;}
}

/**************************************
    MICRO-INTERACTIONS & EFFECTS
***************************************/
.card, .service-block, .price-block, .testimonial-card {
  transition: box-shadow .17s, transform .13s;
}
.card:hover, .service-block:hover, .price-block:hover {
  transform: translateY(-6px) scale(1.012);
}
.cta-btn, .cookie-btn, .modal-save-btn {
  transition: background .15s, color .12s, box-shadow .18s;
}

/**************************************
    PRINT ADJUSTMENTS/FOCUS STYLES
***************************************/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  a[href]:after {content: " (" attr(href) ")"; font-size:80%; color:#D1A35C;}
}
:focus-visible {
  outline: 2px solid #D1A35C;
  outline-offset: 2px;
}

/* End of Elegant Classic CSS */
