/* CSS RESET & NORMALIZE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F3F7F4;
  color-scheme: light;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #25334A;
  background: #F3F7F4;
  font-size: 1rem;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #25334A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D4AF7A;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button, .cta-primary, .cta-secondary {
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  border: none;
  outline: none;
  transition: all 0.25s cubic-bezier(.5,0,.25,1);
}

/* TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #25334A;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; margin-bottom: 24px;}
h2 { font-size: 1.7rem; margin-bottom: 20px;}
h3 { font-size: 1.2rem; margin-bottom: 14px;}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #6B7687;
  margin-bottom: 14px;
}

p {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #25334A;
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
strong { font-weight: 600; }

/* BRAND COLORS */
:root {
  --color-primary: #25334A;
  --color-secondary: #D4AF7A;
  --color-accent: #F3F7F4;
  --color-dark: #1a202f;
  --color-muted: #6B7687;
  --color-bg: #F3F7F4;
  --color-white: #fff;
  --shadow-base: 0 2px 12px 0 rgba(42, 48, 58, 0.08);
  --radius-card: 16px;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-white);
  border-bottom: 1px solid #e0e2e9;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #25334A;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 8px 2px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: #f7efe1;
}
.cta-primary {
  padding: 10px 28px;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 26px;
  box-shadow: 0 2px 8px 0 rgba(68, 54, 14, 0.07);
  font-size: 1.1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 500;
  margin-left: 16px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #b4955a;
  box-shadow: 0 4px 14px 0 rgba(68, 54, 14, 0.13);
  color: #fffbe8;
}
.cta-secondary {
  padding: 10px 24px;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
  border-radius: 26px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* BURGER MENU (only visible mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 6px;
  margin-left: 18px;
  transition: background 0.15s;
  z-index: 1003;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e1e3e8;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.5,0,.25,1), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--color-white);
  font-size: 2rem;
  margin: 22px 0 0 20px;
  align-self: flex-start;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #394b6a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 60px 0 0 36px;
  width: calc(100vw - 72px);
}
.mobile-nav a {
  color: var(--color-white);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 10px 4px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #394b6a;
  color: var(--color-secondary);
}

/* HERO */
.hero {
  margin-bottom: 60px;
  background: var(--color-accent);
  padding: 58px 0 58px 0;
  border-bottom: 1px solid #dde0e6;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
  max-width: 670px;
  align-items: flex-start;
  margin-left: 0;
}

/* FEATURES */
.features {
  margin-bottom: 60px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
  padding: 38px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 6px;
}
.feature-item {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAFAF8;
  border-radius: 12px;
  padding: 22px 20px 20px 20px;
  box-shadow: 0 1px 6px 0 rgba(87,74,58,0.04);
  border: 1.5px solid #efede9;
  transition: box-shadow 0.18s;
}
.feature-item:hover {
  box-shadow: 0 2px 14px 0 rgba(72,60,28,0.13);
  border-color: #e2e0db;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

/* CARDS & ARTICLES */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.article-card {
  flex: 1 1 245px;
  min-width: 245px;
  max-width: 350px;
  background: #FFFDF9;
  border-radius: 13px;
  box-shadow: 0 1px 10px 0 rgba(72,60,28,0.07);
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1.3px solid #ede0cb;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.article-card h3 {
  font-size: 1.17rem;
}
.article-card:hover {
  box-shadow: 0 4px 18px 0 rgba(81,68,40,0.13);
  border-color: #e1cd9f;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(98, 83, 37, 0.07);
  padding: 26px 20px;
  border: 1.2px solid #e7dec4;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 28px 20px 23px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(37,51,74,0.07);
  margin-bottom: 24px;
  border: 1.5px solid #ebe8e1;
  font-size: 1.07rem;
  max-width: 600px;
  transition: box-shadow 0.15s, border-color 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 26px 0 rgba(74, 77, 45, 0.11);
  border-color: #d6c9a7;
}
.testimonial-author {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 6px;
}

/* DETAILS - SERVICES LIST SECTIONS */
.leistungen {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAF9F7;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
}
.leistungen ul {
  margin-bottom: 16px;
}

.coaching-services, .workshop-services, .achtsamkeit-services {
  margin-bottom: 60px;
}
.coaching-services ul, .workshop-services ul, .achtsamkeit-services ul {
  margin-bottom: 18px;
}

/* SUCCESS PAGES */
.success {
  margin-top: 60px;
  margin-bottom: 60px;
  background: var(--color-accent);
  border-radius: var(--radius-card);
  padding: 50px 20px;
  text-align: center;
}
.success .cta-primary {
  margin-top: 25px;
}

/* LEGAL PAGES */
.legal {
  margin-bottom: 60px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
  padding: 40px 24px;
}
.legal .text-section {
  margin-bottom: 12px;
}

/* CONTACT PAGE */
.contact {
  background: var(--color-accent);
  border-radius: var(--radius-card);
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}
.kontakt-details {
  margin-bottom: 18px;
}
.text-section {
  margin-bottom: 16px;
}


/* FOOTER */
footer {
  background: #242D43;
  color: #fff;
  padding: 46px 0 16px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #e2dbcd;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-brand img {
  height: 30px;
  width: auto;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--color-white);
  color: #25334A;
  box-shadow: 0 -2px 18px 0 rgba(37,51,74,0.13);
  padding: 22px 24px 18px 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  border-top: 2px solid #f2e9d6;
  transition: transform 0.32s cubic-bezier(.7,0,.3,1), opacity 0.2s;
  font-size: 1.07rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 160px;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  min-width: 180px;
  justify-content: flex-end;
}
.cookie-btn {
  border-radius: 19px;
  padding: 9px 17px;
  background: #e8e3da;
  color: #25334A;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  border: 1.1px solid #c3b08c;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  font-weight: 500;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #b4955a;
  color: #fffbe8;
}
.cookie-btn.reject {
  background: #ece5d2;
  color: var(--color-primary);
  border-color: #d1bb8f;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #dbc491;
  color: #fff;
}
.cookie-btn.settings {
  background: #fbf9f5;
  color: #25334A;
  border-color: #e7dec4;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f4e8ca;
  color: var(--color-primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,51,74,0.25);
  transition: opacity 0.25s, visibility 0.22s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__dialog {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(37,51,74,0.18);
  padding: 42px 34px 32px 34px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.37s cubic-bezier(.6,0,.4,1);
}
@keyframes modalIn {
  0% { transform: translateY(60px) scale(.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #25334A;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.12s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  opacity: 1;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #25334A;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
}
.cookie-category .locked {
  opacity: 0.6;
  cursor: default;
}

.cookie-modal .cookie-btn {
  margin-top: 8px;
  min-width: 130px;
  font-size: 1rem;
}
.cookie-category-desc {
  color: #6B7687;
  font-size: 0.96rem;
  margin-left: 30px;
  margin-top: 2px;
  margin-bottom: 3px;
}

/* FLEXBOX LAYOUTS (MANDATORY 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;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid, .article-grid, .card-container {
    gap: 16px;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    display: none;
  }
  .section, .legal, .contact, .leistungen, .features, .hero, .success {
    margin-bottom: 40px;
    padding: 27px 8px;
    border-radius: 12px;
  }
  .footer-brand img {
    height: 22px;
  }
  .hero {
    padding: 36px 0;
  }
  .feature-grid, .article-grid, .card-container, .content-grid {
    gap: 10px;
  }
  .feature-item, .article-card, .card {
    min-width: 94vw;
    max-width: 100vw;
    padding: 14px 11px;
  }
  .testimonial-card {
    padding: 14px 10px;
    margin-bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 98vw;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    margin-left: 0;
    font-size: 1rem;
    padding: 9px 20px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.05rem; }
  .footer-brand img {
    height: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 7px 12px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
    min-width: 120px;
    gap: 7px;
  }
  .cookie-modal__dialog {
    padding: 28px 10px 26px 10px;
    width: 98vw;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-item img {
    width: 30px;
    height: 30px;
  }
}

/* MICRO-INTERACTIONS, TRANSITIONS */
.card, .feature-item, .article-card, .testimonial-card {
  transition: box-shadow 0.22s, border-color 0.21s, background 0.15s;
}
a, button, .cta-primary, .cta-secondary, .cookie-btn {
  transition: color 0.15s, background 0.15s, border 0.15s, box-shadow 0.14s;
}

/* FOCUS VISIBLE FOR ACCESSIBILITY */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ADDITIONAL UTILITIES */
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 18px; }
.mb-2 { margin-bottom: 18px; }

/* Hide scroll on mobile menu */
body.mobile-menu-open {
  overflow: hidden;
}

/* Show/hide mobile menu logic (JS will toggle .open class) */

/* END OF CSS */