/* =========================
   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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F0F5F8;
  color: #184A6C;
  min-height: 100vh;
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #184A6C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D98324;
}
ul, ol {
  padding-left: 1.5em;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
/* =========================
   BRAND TYPOGRAPHY
   ========================= */
h1, .h1 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #184A6C;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2, .h2 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  margin-top: 0;
  color: #184A6C;
  text-transform: uppercase;
}
h3, .h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  margin-top: 0;
  color: #184A6C;
  text-transform: uppercase;
}
h4, .h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #184A6C;
  text-transform: uppercase;
}
p, li, span, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #184A6C;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  font-weight: 400;
  border-left: 4px solid #D98324;
  padding-left: 20px;
  color: #184A6C;
  background: #F0F5F8;
}
/* =========================
   CONTAINERS & SECTIONS
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 16px;
  }
}
/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #fff;
  border-bottom: 2.5px solid #DFE5EC;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px 0 rgba(24,74,108,0.06);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
header img[alt^="DeckenMeister"] {
  height: 54px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 8px 8px 4px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #F0F5F8;
  color: #D98324;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #184A6C;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 28px;
  letter-spacing: 1.2px;
  border-radius: 12px 0 12px 0;
  border: none;
  box-shadow: 0 2px 6px rgba(24,74,108,0.12);
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D98324;
  color: #fff;
  box-shadow: 0 4px 12px rgba(24,74,108,0.14);
}
/* ==============
  MOBILE NAVIGATION
  ============== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1020px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 112;
    font-size: 2.1rem;
    color: #184A6C;
    background: transparent;
    border: none;
    padding: 6px 12px 2px 12px;
    margin-left: auto;
    border-radius: 8px;
    transition: background 0.12s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #F0F5F8;
    color: #D98324;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 325px;
  max-width: 97vw;
  background: #fff;
  box-shadow: -2px 0 42px 0 rgba(24,74,108,0.23);
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(0.4, 0.54, 0.42, 1.04);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 28px 0 0 0;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 18px;
  margin-bottom: 18px;
  font-size: 2rem;
  color: #184A6C;
  background: transparent;
  border-radius: 8px;
  transition: background 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F0F5F8;
  color: #D98324;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 12px 32px 32px 40px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: #184A6C;
  text-transform: uppercase;
  letter-spacing: 0.95px;
  padding: 12px 0 8px 6px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F0F5F8;
  color: #D98324;
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* ===============
   HERO SECTION
   =============== */
.hero-section {
  background: #184A6C url('../assets/hero-geometric.svg') bottom right no-repeat;
  background-size: contain;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 48px 0 48px 0;
  position: relative;
  border-radius: 0 0 60px 0;
  box-shadow: 0 4px 32px rgba(24,74,108,0.12);
  margin-bottom: 38px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-section .content-wrapper {
  color: #fff;
  max-width: 600px;
  padding: 16px 8px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.65rem;
}
.hero-section p {
  color: #f3f8fb;
  font-size: 1.22rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-section .cta-btn {
  background: #D98324;
  color: #fff;
  font-size: 1.13rem;
  padding: 12px 36px;
  border-radius: 0 16px 16px 0;
  letter-spacing: 1.2px;
}
.hero-section .cta-btn:hover {
  background: #184A6C;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 180px;
    padding: 28px 0 28px 0;
    border-radius: 0 0 32px 0;
    margin-bottom: 24px;
  }
  .hero-section .content-wrapper {
    max-width: 100%;
    padding: 10px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
/* =========================
   FEATURE CARDS & GRIDS
   ========================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.features-grid > div {
  background: #fff;
  border-radius: 18px 0 18px 0;
  box-shadow: 0 2px 11px 0 rgba(24,74,108,0.08);
  border: 2.5px solid #DFE5EC;
  padding: 28px 28px 20px 28px;
  min-width: 245px;
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.19s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 28px rgba(24,74,108,0.13);
  border-color: #D98324;
  transform: translateY(-4px) scale(1.04);
  z-index: 2;
}
.features-grid img {
  width: 46px;
  height: 46px;
}
.features-grid h3, .features-grid h4 {
  margin-bottom: 6px;
  margin-top: 0;
  color: #184A6C;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}
.features-grid p {
  color: #184A6C;
  font-size: 1rem;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .features-grid {
    gap: 18px;
  }
  .features-grid > div {
    flex: 1 1 95%;
    max-width: 98%;
    min-width: 0;
    padding: 22px 15px 12px 15px;
    border-radius: 10px 0 10px 0;
  }
  .features-grid img {
    width: 38px;
    height: 38px;
  }
}
/* =========================
   TESTIMONIALS
   ========================= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-left: 7px solid #D98324;
  border-radius: 14px 0 14px 0;
  box-shadow: 0 2px 13px 1px rgba(24,74,108,0.09);
  padding: 24px 28px 22px 28px;
  margin-bottom: 20px;
  max-width: 480px;
  min-width: 270px;
  flex: 1 1 320px;
  transition: box-shadow 0.16s, border 0.16s;
  color: #184A6C;
  font-size: 1.1rem;
}
.testimonial-card blockquote {
  border: none;
  font-size: 1rem;
  color: #184A6C;
  background: none;
  padding: 0;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(24,74,108,0.14);
  border-left: 7px solid #184A6C;
  z-index: 2;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 18px 16px 15px 16px;
    max-width: 98%;
    min-width: 0;
    border-radius: 8px 0 8px 0;
  }
}
/* =========================
   FOOTER
   ========================= */
footer {
  background: #184A6C;
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 12px;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer nav a {
  color: #F0F5F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.2px;
  transition: color 0.19s;
  padding: 4px 4px;
  border-radius: 6px;
}
footer nav a:hover, footer nav a:focus {
  color: #D98324;
  background: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #f9fafb;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 7px;
  width: 19px;
  height: 19px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
  .footer-contact span {
    font-size: 0.98rem;
  }
}
/* =========================
   BUTTONS & INTERACTIVES
   ========================= */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: #184A6C;
  color: #fff;
  border: none;
  border-radius: 10px 0 10px 0;
  padding: 10px 24px;
  transition: background .15s, color .15s, box-shadow .13s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #D98324;
  color: #fff;
}
/* =========================
   FORMS & UTILITY CLASSES
   ========================= */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #DFE5EC;
  border-radius: 8px 0 8px 0;
  padding: 12px;
  background: #fff;
  color: #184A6C;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D98324;
  outline: none;
}
/* =========================
   CONTACT & MAP BLOCKS
   ========================= */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  list-style: none;
}
.contact-details-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  gap: 8px;
  color: #184A6C;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.opening-hours img {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 8px 0 8px 0;
  border: 2px solid #DFE5EC;
  padding: 14px 12px;
  color: #184A6C;
  margin-bottom: 16px;
}
.map-placeholder img {
  width: 28px;
  height: 28px;
}
/* =========================
   SPECIAL COMPONENTS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px 0 18px 0;
  box-shadow: 0 2px 11px 0 rgba(24,74,108,0.08);
  border: 2.5px solid #DFE5EC;
  padding: 24px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, border 0.16s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(24,74,108,0.14);
  border-color: #D98324;
  z-index: 2;
  transform: scale(1.03) translateY(-3px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px 0 12px 0;
  box-shadow: 0 2px 10px 0 rgba(24,74,108,0.07);
  border: 2.5px solid #DFE5EC;
  padding: 18px 16px 13px 16px;
  margin-bottom: 16px;
  position: relative;
}
.feature-item:hover {
  border-color: #D98324;
  box-shadow: 0 6px 16px 0 rgba(24,74,108,0.10);
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #184A6C;
  padding: 24px 16px;
  box-shadow: 0 -2px 24px 0 rgba(24,74,108,0.13);
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(.44,.39,.41,.99), opacity 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(140px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-banner button {
  background: #184A6C;
  color: #fff;
  border-radius: 8px 0 8px 0;
  padding: 9px 22px;
  font-size: 1rem;
  border: none;
  transition: background 0.12s, color 0.12s;
}
.cookie-banner button.cookie-settings {
  background: #D98324;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #184A6C;
  border: 2px solid #184A6C;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #fff;
  color: #D98324;
  border: 2px solid #D98324;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 7px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,74,108,0.33);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #184A6C;
  padding: 40px 30px 30px 30px;
  border-radius: 16px 0 16px 0;
  box-shadow: 0 4px 38px 0 rgba(24,74,108,0.21);
  min-width: 320px;
  max-width: 98vw;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2110;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #DFE5EC;
  font-size: 1.04rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #DFE5EC;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: #D98324;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(24,74,108,0.13);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-modal .close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 1.3rem;
  color: #184A6C;
  background: none;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  background: #F0F5F8;
  color: #D98324;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 8px 18px 8px;
    min-width: 0;
  }
  .cookie-modal h2 { font-size: 1.06rem; }
}
/* =========================
   UTILITY & GEOMETRIC DESIGN
   ========================= */
.geometric-shape {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #D98324;
  clip-path: polygon(0 0,100% 0,100% 100%,0 80%);
  opacity: 0.12;
  z-index: 0;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.98) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.card, .testimonial-card, .features-grid > div {
  animation: cardFadeIn .68s cubic-bezier(.63,.12,.84,.75) both;
}
/* =========================
   SPACING
   ========================= */
.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;
}
/* MEDIA RESPONSIVENESS */
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
}
/* =========================
   SCROLLBAR (DECORATIVE)
   ========================= */
body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-thumb {
  background: #DFE5EC;
  border-radius: 11px 0 11px 0;
}
body::-webkit-scrollbar-track {
  background: #fff;
}
/* =========================
   GEOMETRIC STRUCTURED FONT-FACES
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;700&display=swap');
