/* ========================== CSS RESET & BASE STYLES ========================== */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F7F8;
  color: #183153;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img,svg {
  max-width: 100%;
  vertical-align: middle;
}
ul,ol {
  list-style: none;
}
a {
  color: #14B1A7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D4AF37; /* Luxury gold on hover */
}
strong { font-weight: 700; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #183153;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.12;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
p, li, .text-section, .testimonial-meta {
  font-size: 1.0625rem;
  color: #2A3550;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(24,49,83,0.07), 0 1.5px 4px rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
    border-radius: 10px;
  }
}

/* ========================== BRAND COLORS ========================== */
:root {
  --color-primary: #183153;
  --color-secondary: #14B1A7;
  --color-accent: #F6F7F8;
  --color-gold: #D4AF37;
  --color-gold-light: #F9E9BB;
  --color-white: #fff;
  --color-grey: #F0F1F3;
  --color-dark: #121622;
  --color-shadow: rgba(24,49,83,0.07);
}

/* ========================== CONTAINER & LAYOUT ========================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========================== HEADER & NAVIGATION ========================== */
header {
  background: var(--color-primary);
  box-shadow: 0 3px 16px 0 rgba(24,49,83,0.13);
  z-index: 100;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
header img {
  height: 38px;
  margin-right: 30px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
nav .cta {
  background: var(--color-gold);
  color: var(--color-primary);
  font-weight: 700;
  margin-left: 18px;
  box-shadow: 0 2px 6px 0 rgba(24,49,83,0.11);
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
}
nav .cta:hover, nav .cta:focus {
  background: #fff2ce;
  color: var(--color-primary);
  box-shadow: 0 4px 16px 0 rgba(212,175,55,0.09);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  margin-left: 16px;
  padding: 6px 10px;
  z-index: 151;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}

/* MOBILE NAVIGATION */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,49,83,0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.32,1.1,.47,.95);
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 201;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  margin-top: 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 32px;
}
.mobile-nav a {
  color: var(--color-gold);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 6px;
  border-radius: 18px;
  letter-spacing: 0.02em;
  background: none;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav .cta {
  background: var(--color-gold);
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 18px;
  padding: 13px 0;
  text-align: center;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.mobile-menu {
  display: flex;
}

/* ========================== MAIN & SECTION LAYOUTS ========================== */
main {
  width: 100%;
  padding-top: 28px;
  min-height: 60vh;
}
@media (max-width: 700px) {
  main {
    padding: 10px 0 0 0;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 3px 18px 0 rgba(24,49,83,0.06);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 18px 8px;
    border-radius: 11px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 1.5px 7px 0 var(--color-shadow);
  position: relative;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  min-width: 235px;
  max-width: 320px;
  transition: box-shadow 0.2s, border-color 0.19s;
  border: 1.5px solid transparent;
}
.card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 5px 18px 0 var(--color-shadow);
  z-index: 6;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(24,49,83,0.11);
  border-left: 5px solid var(--color-gold);
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 14px 0 rgba(212,175,55,0.10);
  border-left-color: #EDC967;
}
.testimonial-meta {
  color: #362d12;
  font-style: italic;
  font-weight: 500;
  margin-left: 12px;
  letter-spacing: 0.02em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ========================== BUTTONS & LINKS ========================== */
.cta, button, input[type=submit] {
  background: var(--color-gold);
  color: var(--color-primary);
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  box-shadow: 0 2px 10px 0 rgba(212,175,55,0.11);
  letter-spacing: 0.03em;
  margin-right: 10px;
}
.cta:hover, .cta:focus, button:hover, input[type=submit]:hover {
  background: #fff2ce;
  color: var(--color-primary);
}

/* Cookie consent specific buttons will be added below */

/* ========================== ICONS & IMAGES ========================== */
img[alt^='Adresse'],
img[alt^='Telefon'],
img[alt^='E-Mail'],
img[alt^='Öffnungszeiten'],
img[alt^='Auszeichnung'],
img[alt^='News'],
img[alt^='Innovation'],
img[alt*='icon-'] {
  height: 22px;
  width: 22px;
  vertical-align: text-bottom;
  margin-right: 6px;
}
.social-follow ul {
  display: flex;
  gap: 14px;
}
.social-follow h2 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  color: var(--color-gold);
  font-size: 1.13rem;
  font-weight: 700;
}

/* ========================== FOOTER ========================== */
footer {
  padding: 30px 0 10px 0;
  background: var(--color-primary);
  color: #fff;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: var(--color-gold);
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.85;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: rgba(246,247,248,0.2);
  color: #fff;
}
footer .brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: #fff;
  opacity: 0.93;
  margin-top: 8px;
}
footer .brand img {
  height: 30px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  footer nav {
    gap: 13px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
}

/* ========================== RESPONSIVE TYPOGRAPHY ========================== */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}

/* ========================== FLEXBOX LISTS ========================== */
ul, ol {
  padding-left: 0;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 0.7em;
  position: relative;
  font-size: 1.08em;
}
ul li strong, ol li strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* ========================== LUXURY MICRO-INTERACTIONS ========================== */
.card, .testimonial-card, .cta, button, input[type=submit] {
  transition: box-shadow .18s, border-color .14s, color .16s, background .18s, transform .16s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 6px 30px 0 rgba(212,175,55,0.11);
}
.cta:active {
  transform: scale(0.97) translateY(1px);
}

/* ========================== Z-INDEX HANDLING FOR OVERLAYS ========================== */
.mobile-menu { z-index: 200; }
.cookie-consent-banner { z-index: 210; }
.cookie-modal { z-index: 215; }

/* ========================== COOKIE CONSENT BANNER ========================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-white);
  box-shadow: 0 -3px 18px 0 rgba(24,49,83,0.07);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 23px 10px 23px 16px;
  font-size: 1.07rem;
  color: var(--color-primary);
  border-top: 2.5px solid var(--color-gold);
  animation: cookiebanner-slideup 0.55s cubic-bezier(.44,1.7,.48,.82);
}
@keyframes cookiebanner-slideup {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner__actions {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 21px;
  border-radius: 22px;
  border: none;
  margin-right: 0px;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff2ce;
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-grey);
  color: var(--color-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #D8D8D8;
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #128984;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.99rem;
    align-items: stretch;
    padding: 14px 7px 14px 7px;
  }
  .cookie-consent-banner__actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========================== COOKIE SETTINGS MODAL ========================== */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,22,34,0.52);
  z-index: 214;
  animation: fadeInOverlay 0.23s cubic-bezier(.55,1.2,.48,.82);
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  border-radius: 16px;
  max-width: 416px;
  width: 93vw;
  padding: 32px 28px 26px 28px;
  box-shadow: 0 10px 42px 0 rgba(24,49,83,0.14);
  animation: modalUp .34s cubic-bezier(.55,1.2,.48,.82);
}
@keyframes modalUp {
  0% { transform: translateY(60px) scale(0.94); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}
.cookie-modal-ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 13px;
  background: var(--color-grey);
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  box-shadow: 0 0.5px 2px rgba(24,49,83,0.08);
}
.cookie-toggle.enabled {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.14);
  transition: left 0.13s;
}
.cookie-toggle.enabled:before {
  left: 22px;
}
.cookie-modal .cookie-btn {
  display: inline-block;
  margin-right: 8px;
  margin-top: 11px;
}

/* ========================== FORM ELEMENTS & INPUTS ========================== */
input, textarea, select {
  border-radius: 7px;
  border: 1.2px solid #BFC9DE;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 11px 12px;
  margin-bottom: 16px;
  background-color: #fff;
  color: #152440;
  box-shadow: 0 1.5px 6px 0 rgba(24,49,83,0.04);
  outline: none;
  transition: border 0.16s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px #14B1A733;
}

/* ========================== SPACING ENFORCEMENT & FLEXBOX GAPS ========================== */
.section, .card, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}
.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; }

/* ========================== FINE DETAILS & LUXURY ACCENTS ========================== */
.section, .card, .testimonial-card, .cookie-modal {
  border: 1.5px solid #F4E1B1;
}
.card, .testimonial-card, .cookie-modal {
  box-shadow: 0 5px 18px 0 rgba(212,175,55,0.05), 0 2px 6px rgba(24,49,83,0.04);
}
.section {
  border-top: 3.5px solid var(--color-gold);
}
h1,h2 {
  letter-spacing: 0.025em;
  text-shadow: 0 1px 0 #F6F7F8, 0 2px 4px rgba(212,175,55,0.09);
}


/* ========================== SCROLLBAR REFINEMENT ========================== */
::-webkit-scrollbar {
  width: 13px;
  background: #E4E8EF;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 9px;
  border: 3.5px solid #F6F7F8;
}
::-webkit-scrollbar-thumb:hover {
  background: #B59425;
}


/* ========================== ADDITIONAL UTILITIES ========================== */
.hide-on-mobile {
  display: block;
}
@media (max-width: 700px) {
  .hide-on-mobile {
    display: none;
  }
}

.text-section {
  margin-bottom: 20px;
  color: #2D3654;
  font-size: 1.11rem;
  line-height: 1.68;
}
.subheadline {
  color: var(--color-secondary);
  font-size: 1.19rem;
  margin-bottom: 18px;
}

/* ========================== END OF CSS ========================== */