/* BauVision Köln - LUXURY PREMIUM STYLE CSS */

/* --------------------------------------------------------- */
/* CSS RESET & BASE TYPOGRAPHY                              */
/* --------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F4F6F8;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1B3A4B;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #cfb369;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 18px;
}
li {
  margin-bottom: 6px;
}
hr {
  border: 0;
  height: 1px;
  background: #e4e7ec;
  margin: 24px 0;
}

/* --------------------------------------------------------- */
/* BRAND COLORS & PREMIUM GOLD                              */
/* --------------------------------------------------------- */
:root {
  --brand-primary: #1B3A4B;
  --brand-secondary: #67A672;
  --brand-accent: #F4F6F8;
  --brand-gold: #cfb369; /* Gold accent for luxury */
  --grey-900: #23262b;
  --grey-700: #43474e;
  --grey-300: #e4e7ec;
  --white: #fff;
  --card-bg: #fff;
  --shadow: 0 4px 24px rgba(29, 46, 51, 0.08);
}

/* --------------------------------------------------------- */
/* TYPOGRAPHY (Luxury, Premium)                             */
/* --------------------------------------------------------- */
@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, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.16;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
  color: var(--brand-primary);
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  color: var(--grey-900);
  font-size: 1.06rem;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: var(--brand-primary);
}

/* Typography scale on small screens */
@media (max-width: 450px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

/* --------------------------------------------------------- */
/* CONTAINER & FLEX UTILS                                   */
/* --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 600px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  max-width: 760px;
}

/* --------------------------------------------------------- */
/* SPACING FOR SECTIONS (MANDATORY)                         */
/* --------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 600px) {
  section {
    padding: 28px 7px;
    margin-bottom: 34px;
  }
}

/* --------------------------------------------------------- */
/* NAVIGATION: HEADER, BURGER MENU, MOBILE NAV              */
/* --------------------------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,58,75,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}

.logo img {
  max-height: 46px;
  transition: filter 0.3s;
}
.logo:hover img {
  filter: brightness(1.12) drop-shadow(0 2px 2px #cfb36952);
}

.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--brand-primary);
  letter-spacing: 0.03em;
  padding: 8px 0 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 5px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-gold);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  background: var(--brand-gold);
}

.btn-primary, .btn-secondary {
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 32px;
  padding: 12px 32px;
  background: var(--brand-primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: .04em;
  box-shadow: 0 2px 12px rgba(27,58,75,0.09);
  transition: background 0.23s, color 0.23s, box-shadow 0.27s, transform 0.19s;
  margin-left: 20px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  border: 2px solid var(--brand-gold);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-gold);
  color: var(--brand-primary);
  box-shadow: 0 4px 20px var(--brand-gold)44;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--brand-gold);
  color: var(--brand-primary);
  border: 2px solid var(--brand-gold);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
  box-shadow: 0 4px 16px var(--brand-primary)33;
}
@media (max-width: 950px) {
  .btn-primary, .btn-secondary {
    margin-left: 0;
    font-size: 1.06rem;
    padding: 12px 22px;
  }
}

/* Burger button */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-gold);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  box-shadow: 0 2px 8px #cfb36922;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
  outline: none;
}

@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,58,75,0.95);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 55px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.85,0,.21,1);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 80px #222a 0.8;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--brand-gold);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #cfb36922;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 0;
  transition: color 0.17s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-gold);
  background: rgba(255,255,255,0.06);
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  } 
}

/* Prevent page scroll when mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* --------------------------------------------------------- */
/* CARD SPACING & GRID FLEX LAYOUTS (MANDATORY FLEXBOX)      */
/* --------------------------------------------------------- */
.card-container, .card-grid, .feature-grid, .service-cards, .service-list, .testimonial-carousel, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-item, .feature-item, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  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;
}

@media (max-width: 900px) {
  .card-container, .card-grid, .feature-grid, .service-cards, .service-list, .testimonial-carousel, .testimonial-list, .content-grid {
    gap: 15px;
  }
  .feature-item, .testimonial-card, .service-item {
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------------------------------- */
/* LUXURY PREMIUM CARD STYLES                                */
/* --------------------------------------------------------- */
.card, .service-item, .feature-item, .testimonial-card {
  background: var(--card-bg);
  border-radius: 17px;
  box-shadow: 0 4px 24px rgba(27,58,75,0.08), 0 1px 4px #cfb36922;
  border: 1.5px solid var(--brand-gold);
  padding: 32px 26px 28px 26px;
  min-width: 260px;
  max-width: 340px;
  position: relative;
  transition: box-shadow 0.24s, border 0.24s, transform 0.19s;
}
.card:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 40px #cfb36935, 0 1.5px 6px #1B3A4B10;
  border: 1.5px solid var(--brand-primary);
  transform: translateY(-2px) scale(1.017);
  z-index: 2;
}

.feature-item {
  border-left: 5px solid var(--brand-gold);
  border-radius: 0 17px 17px 0;
  background: var(--white);
  box-shadow: 0 3px 18px #cfb3691a;
  min-width: 230px;
  max-width: 340px;
  padding: 28px 24px 24px 26px;
  font-size: 1rem;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}

.service-item {
  border-left: 5px solid var(--brand-gold);
  border-radius: 0 17px 17px 0;
  background: var(--white);
  box-shadow: 0 2px 14px #cfb36915;
  min-width: 230px;
  max-width: 340px;
  padding: 28px 24px 18px 26px;
  font-size: 1rem;
}
.service-item .service-price {
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonial-card {
  background: var(--white);
  color: #222;
  border-left: 5px solid var(--brand-gold);
  border-radius: 0 17px 17px 0;
  min-width: 260px;
  max-width: 420px;
  box-shadow: 0 3px 18px #23262b13;
  font-size: 1.09rem;
  align-items: flex-start;
  word-break: break-word;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 500;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-gold);
  font-size: 1rem;
  margin-top: 10px;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  font-size: 1.04rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.rating-summary img {
  width: 26px;
  height: 26px;
}

@media (max-width: 600px) {
  .card, .service-item, .feature-item, .testimonial-card {
    min-width: 98vw;
    max-width: 100vw;
    padding: 22px 10px 17px 13px;
  }
  .feature-item img {
    width: 34px;
    height: 34px;
  }
}

/* --------------------------------------------------------- */
/* HERO SECTION                                             */
/* --------------------------------------------------------- */
section:first-child {
  padding-top: 60px;
  padding-bottom: 40px;
  background: var(--white);
  box-shadow: 0 2px 12px #cfb36912;
  border-bottom: 2px solid var(--brand-gold);
}
section:first-child h1 {
  font-size: 2.7rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
section:first-child .btn-primary {
  margin-top: 16px;
  margin-left: 0;
}
@media (max-width: 600px) {
  section:first-child {
    padding-top: 28px;
    padding-bottom: 12px;
  }
  section:first-child h1 {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------------- */
/* CTA & CONTACT HIGHLIGHTS                                 */
/* --------------------------------------------------------- */
.contact-highlights {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-highlights span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--grey-700);
  background: #F8F6F2;
  padding: 7px 16px;
  border-radius: 19px;
  box-shadow: 0 1px 5px #cfb36912;
  transition: background 0.19s;
}
.contact-highlights span img {
  width: 18px;
  height: 18px;
  filter: grayscale(0.2);
}
.contact-highlights span:hover {
  background: #fffbe5;
}
@media (max-width: 650px) {
  .contact-highlights {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------- */
/* UL, OL, LISTS                                            */
/* --------------------------------------------------------- */
ul, ol {
  color: var(--grey-900);
  margin-bottom: 14px;
  font-size: 1rem;
  padding-left: 1.3em;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand-gold);
  margin-right: 10px;
  vertical-align: middle;
}
ul li img {
  margin-right: 8px;
  position: relative;
  top: 2px;
  width: 18px; height: 18px;
  object-fit: contain;
}

/* --------------------------------------------------------- */
/* FOOTER: LUXURY STYLE                                     */
/* --------------------------------------------------------- */
footer {
  background: var(--brand-primary);
  color: var(--white);
  padding: 40px 0 25px;
  border-top: 3px solid var(--brand-gold);
  letter-spacing: 0.018em;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
  color: #e8e3d4;
  margin-left: 18px;
}
.footer-logo img {
  width: 62px;
  height: auto;
  filter: drop-shadow(0 0 5px #cfb36922);
}
@media (max-width: 750px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-info {
    margin-left: 0;
    font-size: 0.95rem;
    gap: 4px;
  }
  .footer-logo {
    margin-top: 15px;
  }
}

/* --------------------------------------------------------- */
/* COOKIE CONSENT BANNER & MODAL - PREMIUM                  */
/* --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: linear-gradient(90deg, #fffce9 80%, #f9f1d6 100%);
  box-shadow: 0 -2px 20px #cfb36926;
  padding: 22px 14px 16px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  font-size: 1.03rem;
  border-top: 2px solid var(--brand-gold);
  transition: transform 0.34s cubic-bezier(.65,0,.22,1), opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
}
.cookie-banner .cookie-message {
  color: var(--brand-primary);
  font-size: 1.06rem;
  letter-spacing: 0.017em;
  max-width: 400px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 25px;
  padding: 10px 28px;
  border: 2px solid var(--brand-gold);
  background: var(--brand-gold);
  color: var(--brand-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.18s, transform 0.19s;
  box-shadow: 0 1.5px 8px #cfb36942;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
  border: 2px solid var(--brand-primary);
  transform: scale(1.03);
}
.cookie-banner .btn-secondary {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-gold);
  font-weight: 600;
}
.cookie-banner .btn-secondary:hover,
.cookie-banner .btn-secondary:focus {
  background: var(--brand-gold);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.98rem;
    padding: 16px 8px 13px 8px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,58,75,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  transition: opacity 0.27s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: 22px;
  padding: 34px 32px;
  box-shadow: 0 8px 56px #cfb36950, 0 1.5px 8px #1B3A4B10;
  max-width: 430px;
  min-width: 300px;
  min-height: 210px;
  border: 3px solid var(--brand-gold);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.19rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category label {
  font-size: 1.03rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.icon-lock {
  color: var(--brand-primary);
  margin-right: 7px;
  font-size: 1.13rem;
  font-weight: bold;
}
.toggle-switch {
  width: 38px; height: 24px;
  background: var(--grey-300);
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: center;
  transition: background .24s;
  cursor: pointer;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-gold);
  transition: left 0.24s, background 0.19s;
}
.toggle-switch input:checked + .toggle-slider {
  left: 17px;
  background: var(--brand-primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .btn-tertiary {
  background: var(--brand-white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  font-weight: 700;
}
.cookie-modal .btn-tertiary:hover,
.cookie-modal .btn-tertiary:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
  border: 2.5px solid var(--brand-gold);
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 20px;
  background: var(--brand-gold);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.29rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1.5px 8px #cfb36922;
  transition: background 0.19s, color 0.19s;
  z-index: 9;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--brand-primary);
  color: var(--brand-gold);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 17px 7px;
    max-width: 96vw;
    min-width: unset;
  }
}

/* --------------------------------------------------------- */
/* MICRO-INTERACTIONS/TRANSITIONS                           */
/* --------------------------------------------------------- */
section, .card, .service-item, .feature-item, .testimonial-card, .btn-primary, .btn-secondary {
  transition: box-shadow 0.23s, border 0.23s, background 0.19s, color 0.19s, transform 0.19s;
}

.card:focus-within,
.service-item:focus-within,
.feature-item:focus-within,
.testimonial-card:focus-within {
  outline: 2.5px solid var(--brand-gold);
  box-shadow: 0 4px 32px var(--brand-gold)55, 0 1px 4px #1B3A4B12;
}

/* --------------------------------------------------------- */
/* RESPONSIVE FLEX ALIGNMENT (Mobile First)                  */
/* --------------------------------------------------------- */
@media (max-width: 930px) {
  .card-container, .card-grid, .feature-grid, .service-cards, .service-list, .testimonial-carousel, .testimonial-list, .content-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 17px;
  }
}
@media (max-width: 600px) {
  .card, .service-item, .feature-item, .testimonial-card {
    padding: 14px 7px 13px 7px;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* --------------------------------------------------------- */
/* FORM INPUTS                                              */
/* --------------------------------------------------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 13px;
  border: 1.3px solid var(--brand-gold);
  padding: 12px 16px;
  margin-bottom: 18px;
  background: #faf9f5;
  transition: border 0.22s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 2.5px solid var(--brand-primary);
  outline: none;
}

/* --------------------------------------------------------- */
/* ACCESSIBILITY STYLES                                      */
/* --------------------------------------------------------- */
:focus {
  outline: 2px dashed var(--brand-gold) !important;
  outline-offset: 2px;
}

/* --------------------------------------------------------- */
/* UTILITY CLASSES & VISIBILITY                             */
/* --------------------------------------------------------- */
.d-none { display: none !important; }
.d-block { display: block !important; }
.text-center { text-align: center !important; }
.capitalize { text-transform: capitalize; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }

/* --------------------------------------------------------- */
/* Z-INDEX, NO COL/GIRD, NO ABSOLUTE FOR CARD/BODY          */
/* --------------------------------------------------------- */
/* (All interactive and overlay elements already have z-index as required) */

/* --------------------------------------------------------- */
/* PRINT STYLES (OPTIONAL)                                  */
/* --------------------------------------------------------- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  section { box-shadow: none !important; background: #fff; }
}

/* --------------------------------------------------------- */
/* END: BauVision Köln - Luxury Premium CSS                  */
/* --------------------------------------------------------- */
