/* ==== CSS RESET & NORMALIZE ==== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F5F8;
  color: #0E202C;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #246A73;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #bfa463;
  outline: none;
}

/* === DEFAULT LUXURY PREMIUM COLOR PALETTE === */
:root {
  --brand-primary: #246A73;
  --brand-secondary: #0E202C;
  --brand-accent: #F3F5F8;
  --luxury-gold: #bfa463;
  --luxury-dark: #181818;
  --luxury-offwhite: #faf9f7;
  --luxury-border: #e0ded9;
  --button-dark: #181818;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--luxury-dark);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, dl {
  color: var(--brand-secondary);
  margin-bottom: 16px;
  font-size: 1.06rem;
}
strong {
  color: var(--luxury-dark);
  font-weight: 700;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  padding: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(24, 24, 24, 0.07);
  border: 1.5px solid var(--luxury-border);
  padding: 28px 32px;
  transition: box-shadow 0.2s;
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(191, 164, 99, 0.14);
  border-color: var(--luxury-gold);
  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;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(36, 106, 115, 0.06);
  border-left: 5px solid var(--luxury-gold);
  margin-bottom: 20px;
  min-width: 320px;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.08rem;
  margin: 0 0 6px 0;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8a7043;
  font-size: 1rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HERO / HIGHLIGHT SECTIONS ==== */
.hero {
  background: linear-gradient(110deg, var(--luxury-offwhite) 77%, var(--luxury-gold) 77.2%, var(--luxury-gold) 100%);
  border-bottom: 1.5px solid var(--luxury-gold);
  padding: 60px 0 54px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero h1 {
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-shadow: 0 2px 14px rgba(191, 164, 99, 0.06);
}
.hero p {
  color: var(--brand-secondary);
  margin-bottom: 30px;
  font-size: 1.25rem;
}

/* ==== BUTTONS ==== */
.button-primary, .button-secondary, button, input[type="submit"], .newsletter-signup button {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  outline: none;
  box-shadow: 0 2px 7px rgba(36, 106, 115,0.04);
  background: var(--brand-primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.2s, box-shadow 0.19s, transform 0.17s;
  margin-bottom: 8px;
}
.button-primary,
.button-secondary {
  background: var(--brand-primary);
}
.button-primary:hover, .button-primary:focus {
  background: var(--luxury-gold);
  color: var(--brand-secondary);
  box-shadow: 0 4px 18px 0 rgba(191,164,99,0.14);
  outline: none;
  transform: translateY(-1px) scale(1.03);
}
.button-secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--luxury-gold);
}
.button-secondary:hover, .button-secondary:focus {
  color: #fff;
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  box-shadow: 0 2px 16px 0 rgba(191,164,99,0.13);
}

/* ==== NAVIGATION ==== */
header {
  background: #fff;
  border-bottom: 1.7px solid var(--luxury-gold);
  position: sticky;
  z-index: 1010;
  top: 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  min-height: 74px;
}
header nav img {
  height: 38px;
  margin-right: 30px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--brand-secondary);
  padding: 6px 15px;
  border-radius: 7px;
  transition: color 0.18s, background 0.17s;
  font-weight: 600;
}
header nav a.button-primary {
  padding: 11px 28px;
  margin-left: 14px;
  background: var(--luxury-gold);
  color: var(--brand-secondary);
  border: none;
  box-shadow: 0 2px 7px 0 rgba(36, 106, 115, 0.04);
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}
header nav a.button-primary:hover {
  background: var(--brand-primary);
  color: #fff;
}
header nav a:hover:not(.button-primary) {
  color: var(--luxury-gold);
  background: #f2efe8;
}

/* HAMBURGER/MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  font-size: 2rem;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1101;
  transition: color 0.22s;
}
.mobile-menu-toggle:focus {
  color: var(--luxury-gold);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 27px 0 rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7, 0, .16, 1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 26px 10px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  cursor: pointer;
  z-index: 1210;
}
.mobile-menu-close:focus {
  color: var(--luxury-gold);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-secondary);
  background: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.18s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f2efe8;
  color: var(--luxury-gold);
  outline: none;
}

@media (max-width: 1050px) {
  header nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 8px;
    font-size: 0.93rem;
  }
  header nav img {
    height: 32px;
    margin-right: 18px;
  }
}
@media (max-width: 860px) {
  header nav a {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #181818;
  color: #c8c5be;
  padding: 36px 0 17px 0;
  text-align: center;
  border-top: 2px solid var(--luxury-gold);
  margin-top: 60px;
}
footer img {
  height: 34px;
  margin-bottom: 15px;
}
footer nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  margin-bottom: 17px;
  flex-wrap: wrap;
}
footer nav a {
  color: #e5dbb3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--luxury-gold);
  outline: none;
}
footer div {
  font-size: 0.96rem;
  opacity: 0.8;
}

/* ==== TABLE STYLE (for Preise) ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 7px 0 rgba(36, 106, 115,0.09);
}
thead tr {
  background: var(--brand-primary);
}
thead th {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 13px 6px;
  border: none;
  letter-spacing: 0.02em;
}
tbody tr {
  border-bottom: 1.3px solid #efede7;
}
tbody td {
  padding: 11px 6px;
  font-size: 1rem;
  color: var(--brand-secondary);
  text-align: left;
}
tbody tr:last-child {
  border-bottom: none;
}

/* ==== FORMS, INPUTS ==== */
input[type="email"], input[type="text"], input[type="password"] {
  border: 1.5px solid var(--luxury-border);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  margin-bottom: 13px;
  width: 90%;
  transition: border 0.16s;
}
input[type="email"]:focus, input[type="text"]:focus, input[type="password"]:focus {
  border: 1.5px solid var(--brand-primary);
  outline: none;
}
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.newsletter-signup label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: var(--luxury-dark);
  margin-right: 4px;
}
.newsletter-signup input {
  flex: 1 1 160px;
  min-width: 0;
}
.newsletter-signup button {
  background: var(--luxury-gold);
  color: #181818;
  font-weight: 700;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: var(--brand-primary);
  color: #fff;
  outline: none;
}

/* ==== FLEXBOX PATTERNS & SPACING ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
}
.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;
}

/* ==== SPACING SCHEME & RESPONSIVE ==== */
@media (max-width: 1020px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 850px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .content-wrapper {
    padding: 0 4px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section {
    padding: 30px 4px 30px 4px;
    margin-bottom: 35px;
  }
  .hero {
    padding: 35px 0 32px 0;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 17px 13px;
    min-width: unset;
    width: 100%;
    font-size: 0.97rem;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .newsletter-signup {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  footer nav {
    flex-direction: column;
    gap: 17px;
  }
}

@media (max-width: 550px) {
  h1 {
    font-size: 1.4rem;
  }
  .hero h1 {
    font-size: 1.14rem;
  }
  .container {
    padding: 0 3vw;
  }
  .card {
    padding: 15px 10px;
    min-width: unset;
  }
}

/* ==== ICONS IN LISTS/CONTACT ==== */
ul li, .contact-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 1.09rem;
}
ul li img, .contact-list li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) sepia(64%) hue-rotate(19deg) brightness(0.86) contrast(1.2);
}

/* ==== DEFINITION LIST ==== */
dl {
  margin-bottom: 22px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--brand-primary);
  margin: 20px 0 6px 0;
}
dd {
  margin-bottom: 12px;
  color: var(--brand-secondary);
  margin-left: 0;
  font-size: 1rem;
}

/* === ARTICLE LISTS ==== */
article {
  background: #fff;
  padding: 18px 21px 14px 21px;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 1px 9px 0 rgba(36, 106, 115,0.05);
  border: 1px solid #efede7;
}
article h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
}

/* ===== LUXURY DETAILS ===== */
hr {
  border: none;
  border-top: 1px solid var(--luxury-gold);
  margin: 28px 0;
}

/* ===== MICRO INTERACTIONS ===== */
.button-primary, .mobile-menu-toggle, .mobile-menu-close, .button-secondary, table tr, .card, .testimonial-card, .newsletter-signup button {
  transition: box-shadow 0.19s, background 0.13s, color 0.15s, border 0.16s, transform 0.13s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 28px -3px rgba(191, 164, 99, 0.1);
}
table tr:hover:not(:first-child) {
  background: #f8f6f2;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2005;
  background: #fff;
  border-top: 2.7px solid var(--luxury-gold);
  box-shadow: 0 -2px 20px -2px rgba(24,24,24,0.09);
  padding: 20px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  max-width: 100vw;
  animation: fadeInBanner 0.42s ease;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: var(--brand-secondary);
  font-size: 1.01rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button,
.cookie-banner .button-primary {
  padding: 9px 22px;
  font-size: 1.01rem;
  border-radius: 24px;
  border: none;
  margin: 0 6px 0 0;
}
.cookie-banner .button-primary {
  background: var(--luxury-gold);
  color: #181818;
  font-weight: 600;
}
.cookie-banner .button-primary:hover,
.cookie-banner .button-primary:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .button-secondary {
  background: #fff;
  border: 1.3px solid var(--luxury-gold);
  color: #181818;
  font-weight: 500;
}
.cookie-banner .button-secondary:hover,
.cookie-banner .button-secondary:focus {
  background: var(--luxury-gold);
  color: #181818;
}
.cookie-banner .cookie-settings {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 500;
  border: none;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--luxury-gold);
  color: #181818;
}

@media (max-width: 530px) {
  .cookie-banner {
    padding: 13px 2vw 13px 2vw;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    margin-right: 0;
  }
  .cookie-banner .button-primary, .cookie-banner .button-secondary, .cookie-banner .cookie-settings {
    width: 100vw;
    max-width: 94vw;
    justify-content: center;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 32, 44, 0.41);
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  max-width: 418px;
  width: 96vw;
  padding: 33px 24px 22px 24px;
  box-shadow: 0 6px 40px 0 rgba(36, 106, 115, 0.13);
  color: #181818;
  animation: fadeInPopup 0.43s;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  margin-bottom: 20px;
}
.cookie-modal-content label {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 9px;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #e8e7e1;
  border-radius: 26px;
  position: relative;
  outline: none;
  vertical-align: middle;
  transition: background 0.16s;
  margin-right: 8px;
}
.cookie-toggle:checked {
  background: var(--luxury-gold);
}
.cookie-toggle::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.2s;
  box-shadow: 0 2px 7px 0 rgba(191,164,99,0.13);
}
.cookie-toggle:checked::before {
  left: 19px;
}
.cookie-modal-content .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 21px;
}
.cookie-modal-content .button-primary, .cookie-modal-content .button-secondary {
  padding: 10px 25px;
  font-size: 1.01rem;
}
.cookie-modal-content .modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2rem;
  cursor: pointer;
}
@keyframes fadeInPopup {
  0% {opacity:0; transform: translateY(32px) scale(0.96);}
  100% {opacity:1; transform: none;}
}

/* ===== UTILITIES ===== */
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.mb-20 {margin-bottom: 20px !important;}
.pt-24 {padding-top: 24px !important;}
.pb-24 {padding-bottom: 24px !important;}

/* ==== PRINT COLOR/ACCESSIBILITY ==== */
@media print {
  body, html, .container, .card, .section, .hero, footer {
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }
}
