/* =======================================================================
   Blickwinkel Meisterwerk – Elegant Classic Stylesheet
   -----------------------------------------------------------------------
   Color References (from Brand Guidelines):
   --primary:   #14324B (Rich classic blue)
   --secondary: #F0F4F8 (Muted paper-like white) / #FFFFFF for footer & bg
   --accent:    #B86500 (Elegant bronze/gold)
   --shadow:    0 2px 12px rgba(20, 50, 75, 0.10)
   Typeface:     'Merriweather', Georgia, 'Times New Roman', serif (for headings)
                 'Cormorant Garamond', 'EB Garamond', serif (for display optional)
                 'Open Sans', Arial, sans-serif (for body and nav)
   ======================================================================= */

/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F0F4F8;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #14324B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B86500;
  outline: none;
}
ul, ol {
  padding-left: 1.45em;
  margin-bottom: 1.5em;
}
li { margin-bottom: 0.5em; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  letter-spacing: 0.01em;
  color: #14324B;
  font-weight: 700;
  margin-bottom: 0.75em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.3;
}
h4 {
  font-size: 1.125rem;
  line-height: 1.3;
}
strong { font-weight: 600; color: #14324B; }
blockquote {
  font-style: italic;
  background: #F8F9FB;
  border-left: 4px solid #B86500;
  padding: 20px 24px;
  margin: 0 0 14px 0;
  color: #14324B;
}
p {
  margin-bottom: 1.25em;
  max-width: 700px;
}
section {
  background: transparent;
}

/* Flex and spacing patterns (MANDATORY! match all classes) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(20,50,75,0.07);
  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;
  background: #F8F9FB;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(20,50,75,0.04);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  box-shadow: 0 1px 6px rgba(20,50,75,0.10);
  border-radius: 12px;
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 240px;
}

/* Generic Containers */
.container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/***********************
    HEADER & NAVIGATION
***********************/
header {
  background: #fff;
  border-bottom: 1px solid #E3E5EA;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(20,50,75,0.035);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 28px;
}
.brand-logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 32px;
}
.brand-logo img {
  height: 48px;
}
.nav-links, .main-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.main-navigation {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.main-navigation a {
  padding: 6px 10px;
  color: #14324B;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-navigation a:hover,
.main-navigation a:focus {
  background: #F0F4F8;
  color: #B86500;
}

.cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  background: #14324B;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(20,50,75,0.075);
  border: none;
}
.cta.primary { background: #B86500; color: #fff; }
.cta:hover,.cta:focus {
  background: #D68328;
  color: #fff;
  box-shadow: 0 4px 16px rgba(20,50,75,.08);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #14324B;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F0F4F8;
  color: #B86500;
}

/***********************
          MOBILE MENU
***********************/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 28px rgba(20,50,75,0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.85,0,0.15,1);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #14324B;
  padding: 16px 16px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B86500;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 18px;
  gap: 4px;
}
.mobile-nav a {
  width: 100%;
  padding: 14px 24px;
  color: #14324B;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-bottom: 1px solid #F0F4F8;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0F4F8;
  color: #B86500;
}

/***********************
          HERO AREA
***********************/
.hero {
  background: linear-gradient(120deg, #F0F4F8 70%, #fff 100%);
  padding: 52px 0 60px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #14324B;
  font-weight: 800;
  max-width: 650px;
  margin-bottom: 12px;
}
.hero .subheadline, .hero .intro-text {
  font-size: 1.18rem;
  color: #374759;
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
}

/***********************
        FEATURE AREA
***********************/
.features {
  background: #fff;
  border-top: 1px solid #EAECF2;
  border-bottom: 1px solid #EAECF2;
  padding-top: 32px;
}
.feature-grid, .grid-of-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: #14324B;
}

/***********************
        SERVICE LISTS
***********************/
.services, .services-list, .service-teasers, .service-descriptions, .service-item, .pricing-overview {
  width: 100%;
}
.services {
  background: #F8F9FB;
  padding-top: 20px;
  padding-bottom: 28px;
}
.services-list, .service-teasers, .service-descriptions, .pricing-overview {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services-list li, .service-teasers li, .pricing-overview li {
  font-size: 1.04rem;
  color: #14324B;
  border-left: 4px solid #B86500;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(20,50,75,.05);
}
.service-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(20,50,75,0.06);
  padding: 18px 16px 12px 16px;
  flex: 1 1 240px;
  margin-bottom: 0;
}
.price {
  color: #B86500;
  font-weight: 600;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  margin-left: 4px;
}

/***********************
    TESTIMONIALS & CARDS
***********************/
.testimonials {
  padding: 40px 0 30px 0;
  background: #FFF;
}
.testimonial-card {
  background: #F8F9FB;
  color: #14324B;
  border-left: 6px solid #B86500;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(20,50,75,0.06);
  position: relative;
  max-width: 700px;
  width: 100%;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  color: #14324B;
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
}
.testimonial-meta {
  font-family: 'Merriweather',Georgia,serif;
  color: #374759;
  font-size: 1rem;
  margin-left: 10px;
}

/***********************
        FOOTER
***********************/
footer {
  background: #14324B;
  color: #F0F4F8;
  padding: 48px 0 0 0;
  border-top: 6px solid #B86500;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px 58px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px 32px 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 290px;
  gap: 8px;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 2px;
}
.footer-brand span {
  font-size: .92rem;
  color: #F0F4F8;
  opacity: .67;
  font-style: italic;
}
.footer-main-navigation, .footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main-navigation a, .footer-navigation a {
  color: #F0F4F8;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.15s;
  padding: 4px 0;
}
.footer-main-navigation a:hover,
.footer-navigation a:hover {
  color: #B86500;
  text-decoration: underline;
}
.contact-info {
  color: #F0F4F8;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.99rem;
  max-width: 270px;
}
.contact-info a {
  color: #B86500;
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-info a:hover {
  color: #fff;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.social-links img {
  height: 28px;
  width: 28px;
  filter: grayscale(0.1) brightness(1.05);
  opacity: .82;
  transition: opacity 0.15s, filter 0.18s;
  cursor: pointer;
}
.social-links img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.3) drop-shadow(0 2px 7px #B8650022);
}

/***********************
         LEGAL PAGES
***********************/
.legal, .confirmation, .about, .contact, .about-location {
  background: #fff;
  border-radius: 12px;
  margin-top: 44px;
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 8px rgba(20,50,75,0.06);
  padding: 44px 20px;
}
.legal .content-wrapper,
.confirmation .content-wrapper,
.about .content-wrapper,
.contact .content-wrapper,
.about-location .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}

/***************************************************************
      LIST, TEXT, ICON and INFORMATIONAL BLOCKS
****************************************************************/
.text-section, .story-briefs, .cookie-settings {
  background: #F8F9FB;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 16px;
  color: #14324B;
  font-size: 1rem;
}
.usp-list, .article-list, .step-by-step-list, .icon-bullets, .project-examples-list, .creative-methods {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.usp-list li, .article-list li, .step-by-step-list li, .icon-bullets li, .project-examples-list li, .creative-methods li {
  background: #fff;
  border-left: 4px solid #B86500;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px rgba(20,50,75,0.06);
}
.article-list img, .icon-bullets img, .project-examples-list img {
  height: 28px;
  width: 28px;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
}
.project-examples-list span {
  color: #B86500;
  font-weight: 600;
}

/**************************************************************
           CONTACT PAGE, MAP-SNIPPET, TEXT IMAGE SECTIONS
***************************************************************/
.contact-info-box {
  background: #F8F9FB;
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(20,50,75,0.07);
  font-size: 1rem;
  color: #14324B;
}
.contact-info-box p { margin-bottom: 10px;}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 7px;
  padding: 8px 14px;
  margin-top: 10px;
  color: #374759;
  font-size: .98rem;
  font-style: italic;
}
.map-snippet img {
  height: 28px;
  margin-right: 6px;
}

/**************************************************************
        COOKIE CONSENT BANNER + POPUP MODAL (MANDATORY)
***************************************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1999;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #B86500;
  box-shadow: 0 -2px 18px rgba(20,50,75,0.11);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 16px;
  gap: 32px;
  animation: cookieSlideUp .5s cubic-bezier(0.75,0,0.6,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #14324B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.97rem;
  margin: 0 14px 0 0;
}
.cookie-banner .cookie-actions { display: flex; gap: 16px; }
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 100px;
  background: #14324B;
  color: #fff;
  border: none;
  font-family: 'Merriweather', Georgia, serif;
  font-size: .98rem;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.15s;
}
.cookie-banner .cookie-accept { background: #B86500; }
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #D68328;
}
.cookie-banner .cookie-reject { background: #14324B; }
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus { background: #14324Bd8; }
.cookie-banner .cookie-settings-btn { background: #E3E5EA; color: #14324B; }
.cookie-banner .cookie-settings-btn:hover { background: #B86500; color: #fff; }

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,50,75,0.25);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.75,0,.6,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  padding: 40px 30px 22px 30px;
  border-radius: 18px;
  min-width: 325px;
  max-width: 95vw;
  box-shadow: 0 8px 42px rgba(20,50,75,0.21);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalZoomIn 0.25s cubic-bezier(0.38,1.14,0.75,1.01);
}
@keyframes modalZoomIn {
  from { transform: scale(0.94); opacity: .4; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 10px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-category {
  background: #F8F9FB;
  border-left: 4px solid #B86500;
  border-radius: 7px;
  padding: 15px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-category .switch {
  margin-left: 22px;
  flex-shrink: 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #D4D8DE;
  border-radius: 21px;
  transition: background .2s;
}
.switch input:checked + .slider {
  background: #B86500;
}
.slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(20,50,75,0.06);
  transition: transform .22s;
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 20px;
  border-radius: 100px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: .99rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  color: #14324B;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  padding: 2px 7px;
  transition: color 0.17s;
}
.cookie-modal-close:hover {
  color: #B86500;
}

/**************************************************************
            MEDIA QUERIES & RESPONSIVENESS – FLEXBOX ONLY!
***************************************************************/
@media (max-width: 1060px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .grid-of-principles, .service-descriptions {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .footer-brand,
  .footer-main-navigation,
  .footer-navigation,
  .contact-info,
  .social-links {
    max-width: 100%;
  }
  footer .container { gap: 25px 18px; }
}

@media (max-width: 830px) {
  header .container {
    gap: 18px;
  }
  .feature-grid, .grid-of-principles {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  header .main-navigation, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-brand, .footer-main-navigation, .footer-navigation, .contact-info, .social-links {
    align-items: flex-start;
    text-align: left;
  }
  .hero {
    padding: 38px 0 36px 0;
  }
  .section, .legal, .confirmation, .about, .contact, .about-location {
    margin: 20px auto 28px auto;
    padding: 32px 8px;
  }
  .feature-grid, .grid-of-principles, .service-descriptions {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card, .feature-item, .service-item {
    max-width: 100%;
    min-width: 0;
  }
  .services-list, .service-teasers, .service-descriptions, .pricing-overview {
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 14px 12px;
  }
  .cookie-modal-content {
    padding: 22px 9vw 16px 9vw;
    min-width: 0;
  }
}

@media (max-width: 500px) {
  html { font-size: 14px; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: .98rem; }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cookie-modal-content {
    max-width: 98vw;
    padding: 12vw 2vw 16px 2vw;
  }
}

/***********************
      MICRO-INTERACTIONS
***********************/
button, .cta, .switch .slider {
  transition: background .18s, color .17s, box-shadow .14s, border .18s;
}
.feature-item,
.service-item,
.card {
  transition: box-shadow 0.17s, border-color 0.17s, transform .17s;
}
.feature-item:hover, .service-item:hover, .card:hover {
  box-shadow: 0 10px 22px rgba(20,50,75,0.13), 0 0px #fff;
  border-color: #B86500;
  transform: translateY(-2px) scale(1.013);
  z-index: 2;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #D4D8DE;
  padding: 10px;
  margin-bottom: 16px;
  background: #fff;
  color: #14324B;
  box-shadow: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #B86500;
  outline: none;
  box-shadow: 0 2px 8px rgba(184,101,0,0.13);
}

/***********************
          UTILS
***********************/
.hide-desktop { display: none !important; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: inherit !important; }
}

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