/* CSS RESET & BASE TYPOGRAPHY (luxury_premium style) */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4F5F7;
  color: #24303d;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* BRAND COLORS for luxury_premium */
:root {
  --primary: #22425C;
  --secondary-bg: #F4F5F7;
  --secondary-alt: #ffffff;
  --accent: #38B394;
  --gold: #C9A14B;
  --headline: #222933;
  --muted: #83868b;
  --card-bg: #fff;
  --footer-bg: #202634;
  --footer-text: #F4F5F7;
  --shadow: 0 4px 32px 0 rgba(34, 66, 92, 0.07);
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--headline);
  font-weight: 700;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.75em;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.22;
  margin-bottom: 0.7em;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
p, ul, ol, .subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 1.1em;
  color: var(--muted);
}

strong {
  font-weight: 700;
}

/* CONTAINER & RESPONSIVE LAYOUT */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 900px) {
  .container {
    padding: 0 14px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/*---------------------------------------------------*/
/* HEADER, NAVIGATION, LOGO, CTA BUTTON */
header {
  background: var(--secondary-alt);
  box-shadow: 0 2px 8px rgba(34,66,92,0.05);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.logo-link img {
  height: 42px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  position: relative;
  padding: 10px 6px;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}
.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-alt);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(34,66,92,0.08);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.2s, border 0.2s;
  cursor: pointer;
  margin-left: 12px;
}
.cta-button.primary {
  background: var(--primary);
  color: var(--secondary-alt);
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 18px rgba(201,161,75,0.08);
}
.cta-button.primary:hover,
.cta-button.primary:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 2px 16px rgba(201,161,75,0.15);
}
.cta-button:hover,
.cta-button:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  box-shadow: 0 2px 16px rgba(201,161,75,0.08);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary-alt);
  border: 1.5px solid var(--gold);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 15px 6px 13px;
  cursor: pointer;
  margin-left: 22px;
  transition: background 0.2s, color 0.21s, border 0.17s;
  box-shadow: 0 2px 9px rgba(34,66,92,0.08);
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--gold);
  color: var(--primary);
}
@media (max-width: 900px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/*---------------------------------------------------*/
/* MOBILE NAVIGATION (burger overlay) */
.mobile-menu {
  position: fixed;
  right: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 66, 92, 0.97);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.71,.07,.3,.91);
  box-shadow: -10px 0 32px 0 rgba(34,66,92,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 34px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--gold);
  cursor: pointer;
  z-index: 202;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff080;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 90px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 12px 0 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border 0.23s;
  text-align: center;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/*---------------------------------------------------*/
/* SECTIONS & LAYOUT STRUCTURE */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border: none;
}
section.hero {
  background: linear-gradient(90deg,#fff,#f7f5f4 120%);
  border-bottom: 1px solid #ece7db;
  box-shadow: 0 2px 12px rgba(34,66,92,0.03);
}

/* STANDARDIZED FLEX CONTAINERS */
.card-container, .feature-grid, .team-grid, .testimonial-list, .service-items, .case-study-list, .featured-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
}
.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-list {
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  color: #131925;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 24px 22px;
  border-radius: 19px;
  box-shadow: 0 4px 24px 0 rgba(34,66,92,0.09);
  position: relative;
  min-width: 250px;
  min-height: 122px;
  transition: box-shadow 0.2s, border 0.2s;
  margin-bottom: 20px;
  border: 1.5px solid #f5ead1;
}
.testimonial-card:hover {
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 40px 0 rgba(201,161,75,0.12);
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.06rem;
  color: var(--headline);
  margin-bottom: 5px;
}
.testimonial-card .customer {
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 240px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 16px 0 rgba(34,66,92,0.06);
  padding: 24px 18px 20px 18px;
  border-left: 4px solid var(--gold);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border 0.14s;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item h3 {
  color: var(--gold);
  font-size: 1.18rem;
  margin-bottom: 1px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item p {
  color: #24303d;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 28px rgba(34,66,92,0.13);
  border-left-color: var(--accent);
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 22px;
}

/* Services in Dienstleistungen */
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 rgba(34,66,92, 0.07);
  border-left: 3px solid var(--gold);
  padding: 30px 28px 26px 22px;
  margin-bottom: 20px;
  width: 100%;
  flex: 1 1 260px;
  transition: box-shadow 0.17s, border 0.21s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-item h3 {
  color: var(--primary);
  margin-bottom: 0.5em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.service-item .service-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
}
.service-item:hover {
  box-shadow: 0 7px 32px rgba(201,161,75,0.12);
  border-left: 3px solid var(--accent);
}

.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study-item {
  background: #fff;
  padding: 28px 22px;
  border-radius: 18px;
  margin-bottom: 20px;
  flex: 1 1 340px;
  box-shadow: 0 2px 16px rgba(34,66,92,0.07);
  border-left: 4px solid var(--accent);
}
.case-study-item h3 {
  color: var(--gold);
  font-size: 1.1rem;
}
.case-study-item ul.key-metrics {
  margin-top: 8px;
  padding-left: 19px;
  color: var(--primary);
  font-size: 1rem;
}

.blog-post-preview {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(34,66,92, 0.07);
  border-left: 3px solid var(--gold);
  padding: 24px 24px 16px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s, border 0.13s;
}
.blog-post-preview h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35em;
}
.blog-post-preview .post-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.2s;
  margin-top: 4px;
}
.blog-post-preview .post-link:hover,
.blog-post-preview .post-link:focus {
  color: var(--gold);
}
.blog-post-preview:hover {
  box-shadow: 0 7px 28px rgba(201,161,75,0.10);
  border-left: 3px solid var(--accent);
}

/* List layouts for categories, core-values, benefits, etc. */
.core-values-list,
.approach-steps,
.benefits-list,
.categories-overview ul,
.text-section ul {
  margin-left: 21px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1rem;
  list-style: disc outside;
}
.approach-steps {
  list-style: decimal outside;
}
.categories-overview h3 {
  font-size: 1.07rem;
  margin-bottom: 11px;
  color: var(--gold);
}
.benefits-list li,
.core-values-list li {
  margin-bottom: 9px;
}

/*---------------------------------------------------*/
/* SPECIAL WRAPPER/SECTION STYLES */
.about-preview, .newsletter-cta, .cta {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(201,161,75, 0.07);
  padding: 48px 12px;
  margin-bottom: 60px;
  border-left: 4px solid var(--gold);
}
.cta .content-wrapper, .newsletter-cta .content-wrapper {
  align-items: center;
  text-align: center;
}

.contact-section {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 17px 0 rgba(34,66,92,0.08);
  padding: 38px 24px 36px 24px;
}
.contact-details, .contact-hint {
  margin-bottom: 12px;
}
.contact-details a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--accent);
}

.text-section {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 16px;
  box-shadow: 0 2px 12px rgba(34,66,92,0.06);
}
.text-section h2 {
  margin-top: 24px;
  font-size: 1.09rem;
  color: var(--gold);
}
.text-section ul, .text-section ol {
  margin: 1em 0 1.5em 1.2em;
  color: var(--primary);
}
.text-section a {
  color: var(--accent);
  text-decoration: underline;
}
.text-section a:hover {
  color: var(--gold);
}

/*---------------------------------------------------*/
/* FOOTER */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 44px 0 36px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-top img {
  height: 34px;
  width: auto;
  margin-right: 8px;
}
.brand-tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-left: 10px;
  letter-spacing: 0.01em;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin: 20px 0 0 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-info {
  font-size: 0.99rem;
  line-height: 1.6;
  color: #e3e8ef;
  margin-top: 20px;
}
.footer-info a {
  color: var(--gold);
  text-decoration: underline;
}

/*---------------------------------------------------*/
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #222933;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 18px rgba(34,66,92,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 22px;
  z-index: 3000;
  font-size: 1rem;
  transition: transform 0.36s cubic-bezier(.60,1.52,.58,1.2), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 28px;
  border: none;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s, border 0.17s;
}
.cookie-banner .accept {
  background: var(--gold);
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-banner .accept:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .reject:hover {
  background: #f0f0ed;
  color: var(--gold);
}
.cookie-banner .settings {
  background: var(--secondary-bg);
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-banner .settings:hover {
  background: var(--gold);
  color: var(--primary);
}

/* COOKIE MODAL DIALOG */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34, 66, 92, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 4px 36px rgba(34,66,92,0.18);
  padding: 38px 28px 32px 28px;
  max-width: 420px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-intro 0.42s cubic-bezier(.62,1.72,.31,1.01);
}
@keyframes cookie-modal-intro {
  from { opacity: 0; transform: translateY(40px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--gold);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.17s;
  z-index: 50;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: var(--accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #edecec;
}
.cookie-category-title {
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category-toggle {
  margin-left: auto;
  appearance: none;
  width: 36px;
  height: 20px;
  background: #eae7e2;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.21s;
  cursor: pointer;
}
.cookie-category-toggle:checked {
  background: var(--accent);
}
.cookie-category-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(30,40,48,0.09);
  transition: left 0.23s;
}
.cookie-category-toggle:checked:before {
  left: 19px;
}
/* Essential cookies - disabled/inactive and cannot be toggled */
.cookie-category.essential .cookie-category-toggle,
.cookie-category.essential .cookie-category-toggle:before {
  background: #b7ac97 !important;
  pointer-events: none;
}
.cookie-modal .modal-buttons {
  margin-top: 19px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 22px;
  padding: 8px 24px;
  font-weight: 600;
  border: 1.3px solid var(--gold);
  background: var(--gold);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-modal .modal-buttons button.reject {
  background: #fff;
  color: var(--primary);
  border: 1.3px solid var(--primary);
}
.cookie-modal .modal-buttons button.save {
  background: var(--accent);
  color: #fff;
  border: 1.3px solid var(--accent);
}
.cookie-modal .modal-buttons button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/*---------------------------------------------------*/
/* LAYOUT: RESPONSIVENESS and FLEXDIRECTION SWITCHES */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  header .container {
    min-height: 58px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-button {
    display: none !important;
  }
  .content-wrapper, .footer-top, .footer-nav, .footer-info {
    align-items: flex-start;
  }
  .card-container, .feature-grid, .team-grid, .testimonial-list, .service-items, .case-study-list, .featured-posts-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonials .testimonial-list {
    gap: 14px;
  }
  section {
    margin-bottom: 40px;
    padding: 24px 3vw;
  }
  .about-preview, .newsletter-cta, .cta, .contact-section {
    padding: 27px 7px;
  }
  footer .container {
    padding: 0 9px;
    gap: 12px;
  }
  .footer-top {
    flex-direction: column;
    gap: 7px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 17px 7px;
    align-items: flex-start;
  }
}

/*---------------------------------------------------*/
/* UTILITY CLASSES AND MICRO-INTERACTIONS */
img {
  max-width: 100%;
  display: block;
}
a {
  transition: color 0.18s;
}
ul, ol {
  margin-bottom: 12px;
  padding-left: 20px;
}
li {
  margin-bottom: 5px;
}

hr {
  border: 0;
  border-top: 1.5px solid #e6e1ce;
  margin: 36px 0;
}

::-webkit-scrollbar {
  width: 8px;
  background: #ede9da;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* Focus states */
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed var(--gold);
  outline-offset: 2px;
}

/* Subtle fade-in animation for cards */
.card, .service-item, .feature-item, .case-study-item, .testimonial-card, .blog-post-preview {
  opacity: 0;
  animation: fadein-cards 0.65s cubic-bezier(.67,1.52,.39,.97) 0.12s forwards;
}
@keyframes fadein-cards {
  to { opacity: 1; }
}

/*---------------------------------------------------*/
/* PRINT TYPICAL ERRORS - DEBUG STYLING (for development) */
/* PREVENT OVERLAPPING: All elements already have minimum margin via gap and margin-bottom. */

/*---------------------------------------------------*/
/* END OF LUXURY PREMIUM LUMINATE SWEEP CSS */