/* ---- CSS RESET & BASES ---- */
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #222733;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overscroll-behavior: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #BF392B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #af2e24;
  text-decoration: underline;
  outline: none;
}

/* --- BRAND COLOR VARIABLES (with fallbacks) --- */
:root {
  --color-primary: #222733;
  --color-secondary: #BF392B;
  --color-accent: #F9EEDB;
  --color-gold: #C9AC74; /* subtle luxury gold accent */
  --color-gold-dark: #A2884C;
  --color-bg: #fff;
  --color-footer-bg: #1a1a23;
  --color-card-bg: #fff;
  --color-card-border: #e8decf;
  --color-btn-bg: #222733;
  --color-btn-text: #fff;
  --color-btn-hover: #BF392B;
  --color-shadow: 0 4px 24px 0 rgba(34,39,51,0.07);
}

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1em;
  color: var(--color-primary);
}
strong {
  font-weight: 700;
  color: var(--color-secondary);
}
blockquote {
  font-style: italic;
  font-size: 1.1rem;
  border-left: 3px solid var(--color-gold);
  margin-left: 0;
  padding-left: 18px;
  margin-bottom: 1em;
  color: var(--color-primary);
}

/* ---- GLOBAL LAYOUT & CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
  position: relative;
}

/* --- FLEX UTILITY & PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 20px;
  box-shadow: var(--color-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(34,39,51,0.13);
  transform: translateY(-6px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 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-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(34,39,51,0.07);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

ul, ol {
  margin-left: 18px;
  padding-left: 14px;
  margin-bottom: 20px;
  list-style-position: outside;
  color: var(--color-primary);
}
ul li, ol li {
  margin-bottom: 12px;
}

/* ---- NAVIGATION & HEADER ---- */
header {
  background: var(--color-bg);
  width: 100%;
  border-bottom: 1px solid #efefef;
  z-index: 40;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  margin-right: 24px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  outline: none;
}

.cta-btn {
  padding: 12px 32px;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.015em;
  border: none;
  box-shadow: 0 2px 15px 0 rgba(201,172,116,0.07);
  cursor: pointer;
  outline: none;
  margin-left: 16px;
  display: inline-block;
  text-align: center;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-btn-hover);
  color: #fff;
  box-shadow: 0 5px 28px 0 rgba(191,57,43,0.09);
  border: 2px solid var(--color-gold);
}

button, .button {
  font-family: inherit;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  margin-right: 8px;
  display: inline-block;
  position: relative;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--color-btn-hover);
  color: #fff;
  box-shadow: 0 0 12px 2px rgba(191,57,43,0.11);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1;
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  margin-left: 18px;
  border-radius: 10px;
  transition: background 0.15s;
  z-index: 51;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #ede6d6;
  outline: none;
}

/* --- HERO / FEATURE / SECTION STYLES --- */
.hero {
  background: linear-gradient(96deg, var(--color-accent) 66%, #fff 100%);
  box-shadow: 0 4px 40px 0 rgba(34,39,51,0.10);
  border-radius: 0 0 28px 28px;
  margin-bottom: 60px;
  padding: 48px 0 64px 0;
  position: relative;
  align-items: stretch;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px;
}
.hero h1 {
  color: var(--color-primary);
}
.hero p {
  max-width: 640px;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  list-style: none;
}
.features .feature-grid li {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--color-card-border);
  padding: 28px 22px 22px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, border 0.18s, transform 0.15s;
  gap: 13px;
}
.features .feature-grid li img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
}
.features .feature-grid li:hover, .features .feature-grid li:focus {
  box-shadow: 0 8px 36px 0 rgba(34,39,51,0.13);
  border: 1.5px solid var(--color-gold);
  transform: translateY(-3px) scale(1.015);
  outline: none;
}
.features h2 {
  margin-bottom: 12px;
}

/* --- ABOUT PREVIEW / SERVICES --- */
.about-preview ul,
.services ul {
  margin-bottom: 16px;
}
.about-preview ul li,
.services ul li {
  padding-left: 0;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.read-more-link {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: 2px;
  transition: border-bottom 0.12s, color 0.16s;
}
.read-more-link:hover, .read-more-link:focus {
  color: var(--color-gold-dark);
  border-bottom: 1.7px solid var(--color-gold-dark);
  outline: none;
}

/* --- CTA SECTION --- */
.cta {
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 22px 0 rgba(34,39,51,0.10);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #fff;
}
.cta .cta-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 18px auto 0 auto;
  border: 2px solid var(--color-gold);
  transition: background 0.17s, color 0.17s;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--color-btn-bg);
  color: #fff;
}

/* ---- TESTIMONIALS ---- */
.testimonials .testimonial-card {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 24px 0 rgba(34,39,51,0.08);
  border: 1.5px solid var(--color-accent);
  margin: 0 0 24px 0;
}
.testimonials .testimonial-card blockquote {
  color: var(--color-primary);
  border-left: 3px solid var(--color-gold);
  font-size: 1.14rem;
}
.testimonials .testimonial-card p {
  color: var(--color-secondary);
  font-weight: 700;
  margin: 2px 0 0 0;
}

/* ---- CONTACT DETAILS (Kontakt page) ---- */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  font-size: 1.13rem;
  margin-bottom: 12px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--color-footer-bg);
  color: #fff;
  width: 100%;
  position: relative;
  padding: 0;
  box-shadow: 0 -3px 24px 0 rgba(34,39,51,0.09);
}
footer .container {
  flex-direction: column;
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 24px;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 8px;
}
.footer-navigation,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  justify-content: center;
}
.footer-navigation a,
.footer-links a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.16s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.footer-navigation a:hover, .footer-navigation a:focus,
.footer-links a:hover, .footer-links a:focus {
  color: var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
  outline: none;
}
.footer-contact p {
  color: #fff;
  font-size: 0.97rem;
  opacity: 0.78;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 6px;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin: 14px 0 2px 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.13s;
}
.footer-social a:hover, .footer-social a:focus {
  transform: scale(1.14) rotate(-6deg);
  outline: none;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(1.07);
}
.copyright {
  text-align: center;
  font-size: 0.98rem;
  color: #d3cfc1;
  margin-top: 22px;
  opacity: 0.89;
}

/* ---- THANK-YOU PAGE ---- */
.thank-you {
  background: linear-gradient(104deg, var(--color-accent) 50%, #fff 95%);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 30px 0 rgba(34,39,51,0.07);
}
.thank-you h1 {
  color: var(--color-secondary);
  margin-bottom: 28px;
}
.thank-you .cta-btn {
  margin: 18px auto 0 auto;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,39,51,0.87);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(0.82,0.04,0.22,0.91);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  box-shadow: 0 0 60px 3px rgba(34,39,51,0.18);
}
.mobile-menu-close {
  margin-top: 18px;
  margin-right: 24px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 10px;
  align-self: flex-end;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 32px;
  gap: 0;
  padding-right: 36px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 17px 0;
  border-bottom: 1px solid rgba(249,238,219,0.09);
  width: 100%;
  text-align: right;
  transition: background 0.14s, color 0.16s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(201,172,116,0.09);
  outline: none;
}

/* ---- COOKIE BANNER & MODAL ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8ef;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 24px 0 rgba(34,39,51,0.06);
  z-index: 2000;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.27s cubic-bezier(0.65,0.05,0.20,0.90), opacity 0.19s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 22px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.15s, color 0.15s;
  outline: none;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  border: 1.2px solid var(--color-gold);
  color: var(--color-secondary);
  font-weight: 600;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #efeee8;
  color: var(--color-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,28,34,0.82);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 22px 28px 22px;
  box-shadow: 0 6px 54px 0 rgba(191,57,43,0.13);
  width: 96%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
}
.cookie-modal-content ul {
  margin: 0 0 4px 0;
  padding: 0;
  list-style: none;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal-category label {
  font-size: 1.02rem;
  color: var(--color-primary);
  font-weight: 500;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 15px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f8efda;
  outline: none;
}

/* ---- RESPONSIVE DESIGN (MOBILE FIRST) ---- */
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid {
    gap: 22px;
  }
  .footer-navigation, .footer-links {
    gap: 18px;
    font-size: 0.98em;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.42rem;
  }
  .hero {
    padding: 32px 0 36px 0;
    border-radius: 0 0 16px 16px;
  }
  .hero p {
    font-size: 1rem;
  }
  .about-preview, .services, .cta, .thank-you {
    padding: 28px 9px;
  }
  section, .section {
    padding: 26px 9px;
    margin-bottom: 40px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
    margin-left: 10px;
  }
  .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    gap: 10px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    margin-bottom: 16px;
  }
  .card-content {
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    gap: 14px;
    padding-top: 21px;
    padding-bottom: 14px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
    max-width: 100vw;
  }
  .footer-logo img {
    height: 36px;
  }
  .thank-you, .about-preview, .services, .cta {
    padding: 14px 4px;
  }
}

/* ---- ADDITIONAL FINE-DETAILS & STYLE ACCENTS ---- */
.hero::before {
  content: '';
  position: absolute;
  top: -35px;
  right: 2vw;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle at 40% 50%, var(--color-gold-dark) 0, var(--color-gold) 53%, transparent 90%);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 6vw;
  width: 84px;
  height: 84px;
  background: radial-gradient(circle, var(--color-gold) 0, transparent 63%);
  opacity: 0.10;
  border-radius: 50%;
  z-index: 2;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle, var(--color-gold-dark) 0, transparent 89%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 1;
}

.features .feature-grid li::before {
  content: '';
  display: none;
}

/* Input Styles (for cookie modal toggles etc.) */
input[type="checkbox"] {
  accent-color: var(--color-gold);
}

/* ---- ACCESSIBILITY ---- */
:focus {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 1px;
}

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

/* ---- END CSS ---- */
