/*==============================
  RESET & BASE
==============================*/
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;
  color: #23272A;
  background: #F6F2EB;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
a {
  color: #8FB3C9;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
a:focus {
  outline: 2px solid #C0A160;
  outline-offset: 2px;
}
a:hover {
  color: #C0A160;
}
strong {
  font-weight: 600;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
}
::-webkit-input-placeholder {
  color: #888;
}
::-moz-placeholder {
  color: #888;
}
:-ms-input-placeholder {
  color: #888;
}
::placeholder {
  color: #888;
}

/*==============================
  FONT SETUP
==============================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23272A;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.33rem; font-weight: 600; margin-bottom: 14px; }
h4, h5, h6 { font-weight: 600; }
p {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.06rem; }
}

/*==============================
  LUXURY COLOR PALETTE & EFFECTS
==============================*/
:root {
  --brand-primary: #23272A;
  --brand-secondary: #8FB3C9;
  --brand-accent: #F6F2EB;
  --luxury-light: #FCFAF7;
  --luxury-gold: #C0A160;
  --luxury-gold-contrast: #8F7A43;
  --luxury-shadow: 0 4px 16px rgba(35,39,42,0.07), 0 1px 3px rgba(192,161,96,0.09);
}

/*==============================
  HEADER / NAV
==============================*/
header {
  width: 100%;
  background: #FCFAF7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  border-bottom: 1.5px solid #EFE4D3;
  box-shadow: 0 1px 4px rgba(35,39,42, 0.02);
  position: relative;
  z-index: 50;
}
header a img {
  height: 42px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #23272A;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.15s, color 0.15s;
}
header nav a.active, header nav a:focus, header nav a:hover {
  color: var(--luxury-gold);
  background: rgba(192,161,96,0.07);
}
.button-primary {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(90deg, #C0A160 90%, #F6F2EB 100%);
  color: #23272A;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  padding: 12px 36px;
  margin-left: 24px;
  box-shadow: 0 4px 20px rgba(192,161,96,0.10);
  border: 1.5px solid #C0A160;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, border 0.2s;
}
.button-primary:focus {
  outline: 2px solid var(--luxury-gold-contrast);
  outline-offset: 0;
}
.button-primary:hover, .button-primary:active {
  background: #C0A160;
  color: #231E10;
  border-color: #8F7A43;
  box-shadow: 0 8px 30px rgba(192,161,96,0.16);
}

@media (max-width: 1024px) {
  header { padding: 18px 12px; }
  header nav { gap: 16px; }
  .button-primary { margin-left: 8px; padding: 10px 24px; }
}

/* Hide desktop nav & cta on mobile */
@media (max-width: 768px) {
  header nav, header .button-primary {
    display: none !important;
  }
}

/*==============================
  MOBILE MENU
==============================*/
.mobile-menu-toggle {
  display: none;
  background: #C0A160;
  color: #23272A;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 10px 13px;
  border: none;
  box-shadow: 0 1px 8px rgba(192,161,96,0.14);
  cursor: pointer;
  z-index: 140;
  position: fixed;
  top: 24px;
  right: 24px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--luxury-gold);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 39, 42, 0.95);
  color: #F6F2EB;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.9,0.22,0.2,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 27px 28px 18px 0;
  background: none;
  color: #C0A160;
  font-size: 2.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  align-self: flex-end;
}
.mobile-menu-close:focus {
  outline: 2px solid #C0A160;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  align-items: center;
  margin-top: 18px;
  gap: 2.2em;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #F6F2EB;
  text-decoration: none;
  padding: 10px 34px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a.active,
.mobile-nav a:hover {
  background: #C0A160;
  color: #23272A;
}

/* Mobile menu should always be above everything */
@media (max-width: 768px) {
  .mobile-menu { display: flex; }
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--luxury-shadow);
  border-radius: 18px;
  background: #fff;
  padding: 30px 22px;
  border: 1.5px solid #F2EBDE;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(192,161,96,0.13);
  border-color: #C0A160;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px 20px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #EFE4D3;
  box-shadow: 0 2px 8px rgba(35,39,42,0.05);
  transition: box-shadow 0.14s, border-color 0.14s;
  min-width: 235px;
  max-width: 265px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
.feature-item img {
  height: 42px;
  width: 42px;
}
.feature-item:hover {
  border-color: #C0A160;
  box-shadow: 0 6px 20px rgba(192,161,96,0.10);
}

@media (max-width: 900px) {
  .feature-item {
    min-width: 180px;
    max-width: 100%;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 25px 0 0 0;
  align-items: center;
}
.icon-grid img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1.5px solid #EFE4D3;
  background: #FDF9F4;
  box-shadow: 0 3px 9px rgba(192,161,96,0.08);
  padding: 12px;
  transition: border 0.2s;
}
.icon-grid img:hover {
  border: 1.5px solid #C0A160;
}

/* Service grid for dienstleistungen.html */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.service-item {
  flex: 1 1 255px;
  background: #fff;
  border: 1.5px solid #EFE4D3;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 8px rgba(192,161,96,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.service-item:hover {
  border-color: #C0A160;
  box-shadow: 0 7px 20px rgba(192,161,96,0.14);
}
.service-price {
  font-family: 'Montserrat', sans-serif;
  color: #C0A160;
  font-size: 1.12rem;
  font-weight: 700;
  margin-top: 16px;
}

.trend-teasers, .trend-teasers .trend-item {
  display: flex;
  flex-wrap: wrap;
}
.trend-teasers {
  gap: 20px;
  margin-bottom: 26px;
}
.trend-item {
  background: #fff;
  border: 1.5px solid #EFE4D3;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(192,161,96,0.088);
  padding: 20px 20px;
  flex: 1 1 250px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.17s;
}
.trend-item:hover {
  box-shadow: 0 6px 22px rgba(192,161,96,0.10);
  border-color: #C0A160;
}

@media (max-width: 1020px) {
  .feature-grid, .service-grid, .trend-teasers {
    gap: 12px;
  }
}
@media (max-width: 800px) {
  .feature-grid, .service-grid, .trend-teasers {
    flex-direction: column;
  }
}

/*==============================
  HERO, CTA, & PROMO
==============================*/
.hero {
  background: #FCFAF7;
  border-bottom: 2px solid #EFE4D3;
  padding: 54px 0;
  margin-bottom: 50px;
  display: flex;
}
.hero .container
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #23272A;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.24rem;
  margin-bottom: 22px;
  color: #3C4043;
}
@media (max-width: 768px) {
  .hero { padding: 34px 0 22px 0; margin-bottom: 28px; }
  .hero h1 { font-size: 2rem; }
}

.cta {
  background: linear-gradient(90deg, #F6F2EB 80%, #FCFAF7 100%);
  border-top: 2px solid #EFE4D3;
  border-bottom: 2px solid #EFE4D3;
  margin-bottom: 60px;
  padding: 40px 0;
}
.cta .text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*==============================
  ABOUT, POLICY, & MISC SECTIONS
==============================*/
.text-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.policy {
  padding: 48px 0 30px 0;
  min-height: 60vh;
}
.policy h1 {
  font-size: 2.1rem;
}
.policy h2 {
  margin-top: 2em;
}

/*==============================
  TESTIMONIALS
==============================*/
.testimonials, .testimonial-highlight {
  background: #fff;
  border-top: 2px solid #EFE4D3;
  padding: 38px 0 34px 0;
  margin-bottom: 56px;
}
.testimonials h2, .testimonial-highlight h2 {
  color: #23272A;
}
.testimonials .testimonial-card,
.testimonial-highlight .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #F6F2EB;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(192,161,96,0.045);
  border-left: 4px solid #C0A160;
  transition: box-shadow 0.18s;
  color: #23272A;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(192,161,96,0.11);
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #23272A;
  margin-right: 18px;
  flex: 1 1 auto;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #8F7A43;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; padding: 18px 12px; }
  .testimonial-card blockquote { margin-right: 0; }
}

/*==============================
  FOOTER
==============================*/
footer {
  width: 100%;
  background: #FCFAF7;
  border-top: 2px solid #EFE4D3;
  box-shadow: 0 -3px 7px rgba(35,39,42,0.04);
  padding: 32px 0 12px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #23272A;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #C0A160;
  background: rgba(192,161,96,0.09);
}
footer p {
  font-size: 0.9rem;
  color: #8F7A43;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

/*==============================
  UTILITY & MISC COMPONENTS
==============================*/
.info-note {
  border-left: 4px solid #8FB3C9;
  background: #F0F8FA;
  color: #23314D;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 1rem;
  margin: 14px 0;
  box-shadow: 0 1px 9px rgba(143,186,201,0.073);
}
.next-steps ul {
  margin-bottom: 18px;
}
.thank_you_message {
  color: #23272A;
  font-size: 1.14rem;
  margin-bottom: 16px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  background: #FCFAF7;
  border-top: 2px solid #C0A160;
  box-shadow: 0 -6px 18px rgba(192,161,96,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 16px 20px 16px;
  width: 100vw;
  font-size: 1rem;
  gap: 16px;
  animation: cookie-banner-in 0.4s cubic-bezier(.64,.17,0,1.1) 1;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}
.cookie-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 28px;
  font-size: 1rem;
  border: 1.5px solid #C0A160;
  background: #fff;
  color: #C0A160;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, border 0.16s;
}
.cookie-button.accept {
  background: #C0A160;
  color: #23272A;
  border: 1.5px solid #C0A160;
}
.cookie-button.reject {
  background: #F8ECE1;
  color: #8F7A43;
}
.cookie-button.settings {
  background: #fff;
  color: #C0A160;
}
.cookie-button:focus {
  outline: 2px solid #C0A160;
}
.cookie-button:hover, .cookie-button:active {
  color: #231E10;
  background: #FFEEC2;
  border-color: #8F7A43;
}

/* Cookie consent modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,39,42,0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.38s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FCFAF7;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(35,39,42,0.14);
  padding: 34px 32px 28px 32px;
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 10000;
  border: 2px solid #C0A160;
  animation: modal-in 0.35s cubic-bezier(.68,.08,.41,1.06) 1;
}
@keyframes modal-in {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #23272A;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 19px;
}
.cookie-category label {
  font-weight: 600;
  color: #23272A;
}
.cookie-category input[type=checkbox] {
  accent-color: #C0A160;
  width: 19px; height: 19px;
  margin-right: 6px;
}
.cookie-category.cookie-essential label:after {
  content: ' (erforderlich)';
  color: #8F7A43;
  font-size: 0.96em;
  font-weight: normal;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

/*==============================
  RESPONSIVE
==============================*/
@media (max-width: 1000px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .section, .cta, .policy, .about { padding: 26px 0 18px 0; }
}
@media (max-width: 600px) {
  .feature-item, .service-item, .trend-item, .card {
    min-width: 0;
    padding: 16px 8px;
  }
}

/*==============================
  INTERACTIONS & MICRO-EFFECTS
==============================*/
.button-primary, .cookie-button {
  transition: background 0.18s, color 0.17s, border 0.15s, box-shadow 0.2s;
}
.button-primary:active {
  box-shadow: 0 3px 14px rgba(192,161,96,0.09);
  background: #F9E7C2;
}
.card, .feature-item, .service-item, .trend-item {
  transition: box-shadow 0.18s, border 0.18s;
}

/* Accessibility focus */
a:focus, button:focus, .cookie-button:focus, .mobile-menu-close:focus {
  outline: 2px solid #C0A160;
}

/*==============================
  PRINT: remove banners & overlays
==============================*/
@media print {
  .cookie-consent-banner,
  .cookie-modal-overlay,
  .mobile-menu {
    display: none !important;
  }
}
