/* CSS 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #433C2E;
  background: #F4F1EC;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
a {
  color: #433C2E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A19279;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  color: #433C2E;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: bold;
}
blockquote {
  margin: 0 0 16px 0;
  padding-left: 20px;
  border-left: 4px solid #A19279;
  font-style: italic;
  color: #433C2E;
}
/* BRAND COLORS */
:root {
  --primary: #433C2E;
  --secondary: #A19279;
  --accent: #F4F1EC;
  --text-dark: #433C2E;
  --text-light: #FFFFFF;
  --shadow: 0 4px 16px rgba(67,60,46,0.07), 0 1.5px 6px rgba(161,146,121,0.07);
  --radius-lg: 18px;
  --radius-md: 10px;
  --radius-sm: 5px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HEADER & NAVIGATION */
header {
  background: var(--accent);
  border-bottom: 3px solid var(--secondary);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.logo {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus:not(.button-primary) {
  background: var(--secondary);
  color: var(--accent);
}
.button-primary {
  background: var(--primary);
  color: var(--text-light)!important;
  border-radius: 100px;
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 30px;
  margin-left: 18px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  display: inline-block;
  transition: background 0.22s, transform 0.15s, box-shadow 0.2s;
}
.button-primary:hover, .button-primary:focus {
  background: var(--secondary);
  color: var(--primary)!important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 9px 40px 0 rgba(67,60,46,0.10);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 6px 10px;
  z-index: 202;
  margin-left: 22px;
  border-radius: var(--radius-md);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--accent);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.57,.07,.43,.93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 16px 0 16px 24px;
  font-size: 2rem;
  color: var(--accent);
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 4px 8px;
  align-self: flex-start;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0 0 40px;
}
.mobile-nav a {
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.25rem;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.15s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--secondary);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  header .container {
    gap: 14px;
  }
  .main-nav a {
    font-size: 0.96rem;
    padding: 7px 6px;
  }
}
@media (max-width: 768px) {
  header .container {
    height: auto;
    min-height: 56px;
    padding: 0 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero.section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.hero {
  background: linear-gradient(120deg, var(--accent) 74%, #ebe8e2 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 60px 0 34px 0;
  border-bottom: 2px solid var(--secondary);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
}
.hero p {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero a.button-primary  {
  margin-top: 10px;
}

@media (max-width: 600px) {
  .hero {
    padding: 32px 0 22px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/* SECTION/GENERAL STRUCTURE (SPACING) */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.15s, box-shadow 0.18s;
  flex: 1 1 260px;
}
.card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 40px 0 rgba(67,60,46,0.11);
  z-index: 2;
}

.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;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  background: #F9F8F4;
  color: var(--text-dark);
  transition: box-shadow 0.14s, transform 0.13s;
  flex-direction: column;
  max-width: 560px;
}
.testimonial-card strong,
.testimonial-card p {
  color: var(--text-dark);
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px 0 rgba(67,60,46,0.09);
  transform: translateY(-2px) scale(1.01);
}
.review-summary {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div, .service-list > div {
  flex: 1 1 230px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 7px 40px 0 rgba(161,146,121,0.15);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img, .service-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}
.feature-grid h3, .service-list h3 {
  font-size: 1.15rem;
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-grid p, .service-list p {
  font-size: 1rem;
  color: var(--primary);
}
.features ul, .features ol,
.services ul, .services ol {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 26px;
}

@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 18px;
  }
  .feature-grid > div, .service-list > div {
    min-width: 160px;
    padding: 18px 10px 16px 10px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-list > div {
    width: 100%;
    min-width: 0;
  }
}

/* ABOUT / INFO BLOCKS */
.about {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-options .contact-block {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.contact-form-section .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-section a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-form-section a:hover {
  color: var(--secondary);
}

/* LEGAL SECTION */
.legal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.legal .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 15px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--secondary);
  padding-bottom: 22px;
}
.footer-top > a img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-info {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.footer-info p {
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-info a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-info a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 550px) {
  footer .container {
    gap: 14px;
  }
  .footer-top {
    gap: 10px;
    padding-bottom: 14px;
  }
  .footer-info {
    gap: 7px;
  }
  .footer-info p {
    font-size: 0.93rem;
  }
}

/* CARD, LIST, AND GENERAL ELEMENTS */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 7px;
}
ul li::marker, ol li::marker {
  color: var(--secondary);
  font-size: 1.15em;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICONS IN TEXT */
p img {
  vertical-align: middle;
  width: 22px;
  margin-right: 7px;
  opacity: 0.82;
  height: auto;
}

/* ANIMATIONS */
.button-primary, .card, .feature-grid > div, .service-list > div, .testimonial-card {
  transition: box-shadow 0.18s, background 0.12s, transform 0.14s;
}

/* VISUAL GEOMETRIC / STRUCTURED EFFECTS */
/* Subtle geometric accent line for headings */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 48px;
  height: 3.5px;
  border-radius: 5px;
  background: var(--secondary);
  margin-top: 8px;
  margin-left: 0;
}
.features h2:after, .services h2:after {
  background: var(--primary);
  width: 60px;
}

.feature-grid > div, .service-list > div, .testimonial-card {
  border: 1.5px solid #E0DDD6;
}

/* BUTTONS */
.button-secondary {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 100px;
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: background 0.20s, color 0.18s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}
.button-tertiary {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--primary);
  border-radius: 100px;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 8px;
  transition: border 0.18s, background 0.16s, color 0.18s;
}
.button-tertiary:hover, .button-tertiary:focus {
  border-color: var(--primary);
  background: var(--secondary);
  color: var(--accent);
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--secondary);
  outline: none;
  padding: 9px 14px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  background: #fff;
  box-shadow: none;
  transition: border 0.16s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
}
label {
  font-family: 'Merriweather', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.01rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: inline-block;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 19px 0 rgba(67,60,46,.07);
  padding: 22px 18px 20px 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-top: 2.5px solid var(--secondary);
  animation: slideup 0.44s cubic-bezier(.67,-0.14,.68,1.26);
}
@keyframes slideup {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .button-primary, .cookie-banner .button-secondary, .cookie-banner .button-tertiary {
  padding: 10px 18px;
  font-size: 0.99rem;
}
.cookie-banner__text {
  font-size: 1rem;
  text-align: center;
  color: var(--primary);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(67,60,46,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.22s;
}
.cookie-modal__content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px 0 rgba(67,60,46,0.15);
  padding: 38px 32px 22px 32px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  animation: popscale 0.36s cubic-bezier(.33,.94,.8,1.18);
}
@keyframes popscale {
  from { transform: scale(0.85); }
  to { transform: scale(1); }
}
.cookie-modal__close {
  position: absolute;
  top: 9px;
  right: 13px;
  font-size: 1.6rem;
  background: transparent;
  color: var(--secondary);
  border: 0;
  cursor: pointer;
  z-index: 20;
  border-radius: var(--radius-md);
  transition: background 0.17s, color 0.18s;
  padding: 2px 7px 2px 7px;
}
.cookie-modal__close:hover {
  color: var(--primary);
  background: #f5f3ed;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
}
.cookie-category--essential label::after {
  content: ' (immer aktiv)';
  color: var(--secondary);
  font-size: 0.93rem;
  margin-left: 4px;
}
/* Modal Save/Reject */
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .section, section {
    padding: 28px 6px;
    margin-bottom: 44px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-top {
    gap: 17px;
    padding-bottom: 10px;
  }
  .footer-info {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal__content {
    padding: 22px 10px 17px 10px;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  html, body {
    font-size: 15px;
  }
  .container {
    padding: 0 6px;
  }
  .hero h1 {
    font-size: 1.22rem;
  }
  .footer-info p {
    font-size: 0.91rem;
  }
}

/* GEOMETRIC SHAPE ACCENTS (SVG or CSS shapes for separator effect) */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  border-radius: 9px;
  background: var(--secondary);
  margin-bottom: 26px;
}
.hero.section:before,
.legal:before { display: none; }

@media (max-width: 600px) {
  .section:before {
    width: 44px;
    height: 3px;
    margin-bottom: 12px;
  }
}

/* Hide geometric line on sections with headline geometric line */
.section > .container > .content-wrapper > h2:after {
  margin-bottom: 0;
}

/* UTILITIES */
.hide {
  display: none !important;
}

/* FOCUS */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus, .footer-nav a:focus, .footer-legal a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/********** END OF CSS *********/
