/* Zeitspiegel – Scandinavian Clean CSS Style */
/*-------------------------------------*/
/* >>> RESET & BASE NORMALIZE <<< */
/*-------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F5F3EE;
  color: #212A36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #B89F7B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #212A36;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin: 0 0 1.5em 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #212A36;
  margin-bottom: 12px;
  line-height: 1.17;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
small {
  font-size: 0.875em;
}
strong {
  font-weight: 700;
  color: #212A36;
}
blockquote {
  font-style: italic;
  color: #212A36;
  border-left: 4px solid #B89F7B;
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 0 0 10px 0;
  font-size: 1.05em;
  line-height: 1.6;
}
hr {
  border: none;
  border-bottom: 1px solid #e7e3db;
  margin: 40px 0;
}

/*-------------------------------*/
/* >>> CONTAINER & SECTION <<< */
/*-------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(33,42,54,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*-------------------------------*/
/* >>> HEADER & NAVIGATION <<< */
/*-------------------------------*/
header {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(33,42,54,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 6px 8px;
  color: #212A36;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
header nav a:hover, 
header nav a:focus {
  background: #F5F3EE;
  color: #B89F7B;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #212A36;
  display: none;
  cursor: pointer;
  margin-left: 14px;
  padding: 4px 10px;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F5F3EE;
}

/*-------------------------------*/
/* >>> HERO SECTION <<< */
/*-------------------------------*/
.hero {
  background: #F5F3EE;
  margin-bottom: 0;
  padding: 56px 0 40px 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0px 12px 36px rgba(33,42,54,0.04);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #212A36;
}
.hero p {
  color: #55595F;
  font-size: 1.15rem;
  max-width: 80vw;
}

/*-------------------------------*/
/* >>> CTA BUTTON <<< */
.cta-btn {
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 24px;
  background: #B89F7B;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  padding: 12px 32px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(33,42,54,0.06);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  text-decoration: none;
  outline: none;
}
.cta-btn.primary {
  background: #B89F7B;
  color: #fff;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #212A36;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(33,42,54,0.10);
}
.cta-btn:active {
  background: #99805d;
}

/*-------------------------------*/
/* >>> FLEXBOX LAYOUTS <<< */
.features, .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 14px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(33,42,54,0.05);
  padding: 32px 24px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px rgba(33,42,54,0.10);
  transform: translateY(-2px) scale(1.025);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,42,54,0.05);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 32px rgba(33,42,54,0.12);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px 18px 24px 18px;
}

.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #F8F6F3;
  border-left: 4px solid #B89F7B;
  border-radius: 13px;
  padding: 24px 22px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 6px solid #B89F7B;
  border-radius: 16px;
  box-shadow: 0px 2px 12px rgba(33,42,54,0.08);
  color: #212A36;
}
.testimonial-card blockquote {
  background: none;
  border-left: none;
  padding: 0;
  color: #212A36;
  font-size: 1.08rem;
}
.testimonial-card footer {
  color: #55595F;
  font-size: 0.96rem;
  margin-left: 14px;
}

/*------------------------------------*/
/*       FOOTER DESIGN                */
/*------------------------------------*/
footer {
  background: #212A36;
  color: #fff;
  padding: 56px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  flex: 1 1 160px;
}
footer h4 {
  color: #B89F7B;
  font-family: 'Playfair Display', serif;
  font-size: 1.07rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
footer nav a {
  color: #e7e3db;
  font-size: 0.96rem;
  margin-bottom: 4px;
  text-decoration: underline;
}
footer ul {
  list-style: none;
}
footer ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  margin-bottom: 8px;
  color: #e7e3db;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  transition: transform 0.15s;
}
.footer-social a:hover,
.footer-social a:focus {
  transform: scale(1.12) translateY(-2px);
}
footer a {
  color: #B89F7B;
  transition: color 0.15s;
}
footer a:hover,
footer a:focus {
  color: #fff;
}

/*-------------------------------*/
/*     MOBILE NAVIGATION MENU    */
/*-------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,42,54,0.93);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 2200;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.14s;
  padding: 5px 14px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B89F7B;
  color: #fff;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  padding: 8px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: flex;
  min-height: 44px;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B89F7B;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .footer-grid {
    gap: 18px;
    flex-wrap: wrap;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 12px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  footer .footer-grid {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 18px;
  }
  .footer-social {
    margin-top: 10px;
  }
  .hero {
    padding: 32px 0 20px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero h1 {
    font-size: 1.48rem;
  }
  .hero .container {
    padding: 0 5px;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div {
    min-width: unset;
    width: 100%;
    padding: 18px 12px;
  }
  .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
  }
  .text-section {
    border-radius: 7px;
    padding: 14px 11px;
    gap: 10px;
  }
  .mobile-nav {
    padding-left: 18px;
    margin-top: 64px;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1rem;
  }
  .footer-brand img,
  .logo img {
    max-width: 110px;
    height: auto;
  }
}

/*-------------------------------*/
/*      COOKIE CONSENT BANNER    */
/*-------------------------------*/
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 18px;
  background: #fff;
  color: #212A36;
  border-radius: 24px;
  box-shadow: 0px 4px 24px rgba(33,42,54,0.13);
  padding: 26px 28px 22px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  z-index: 3000;
  animation: bannerfadein 0.66s cubic-bezier(0.5,0,0.45,1);
}
@keyframes bannerfadein {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner__msg {
  font-size: 1.07rem;
  max-width: 420px;
  flex: 1 1 auto;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: #B89F7B;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.14s, color 0.14s, transform 0.12s;
  box-shadow: 0 2px 8px rgba(33,42,54,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #212A36;
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.secondary {
  background: #e6e1d9;
  color: #212A36;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #B89F7B;
  color: #fff;
}
.cookie-btn.settings {
  background: #F5F3EE;
  color: #212A36;
  border: 1px solid #B89F7B;
  padding: 8px 18px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e6e1d9;
  color: #B89F7B;
  border-color: #212A36;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 10px 10px 12px;
    left: 3px;
    right: 3px;
    font-size: 0.99rem;
  }
  .cookie-banner__msg {
    font-size: 0.99rem;
    max-width: 320px;
  }
  .cookie-banner__actions {
    gap: 7px;
  }
}

/*-------------------------------*/
/*   COOKIE MODAL PREFERENCES    */
/*-------------------------------*/
.cookie-modal__overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3200;
  background: rgba(41,46,56,0.34);
  animation: modalbg 0.4s;
}
@keyframes modalbg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 48%;
  transform: translate(-50%, -50%);
  z-index: 3500;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(33,42,54,0.16);
  width: 94%;
  max-width: 420px;
  padding: 30px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalin 0.41s cubic-bezier(.72,-0.15,.31,1.12);
}
@keyframes modalin {
  from { opacity: 0; transform: translate(-50%, 40px); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #212A36;
  margin-bottom: 6px;
}
.cookie-modal__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal__option {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F5F3EE;
  border-radius: 11px;
  padding: 10px 16px;
  justify-content: space-between;
}
.cookie-modal__option label {
  font-size: 1.05rem;
  color: #212A36;
  font-weight: 500;
}
.cookie-modal__option .toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 16px;
  background: #e6e1d9;
  position: relative;
  outline: none;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal__option .toggle:checked {
  background: #B89F7B;
}
.cookie-modal__option .toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(33,42,54,0.06);
  transition: transform 0.18s cubic-bezier(.44,1.6,.38,1);
  transform: translateX(0);
}
.cookie-modal__option .toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal__option .toggle:disabled {
  background: #c1bba9;
  cursor: not-allowed;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #212A36;
  font-size: 1.4rem;
  position: absolute;
  top: 12px;
  right: 10px;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 8px;
  transition: background 0.14s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: #F5F3EE;
}
@media (max-width:500px) {
  .cookie-modal {
    padding: 16px 7px 10px 7px;
    max-width: 98vw;
  }
  .cookie-modal__option label{
    font-size: 0.98rem;
  }
}

/*-------------------------------*/
/*     VISUAL UTILITIES          */
/*-------------------------------*/
.gap-24 { gap: 24px; }
.gap-20 { gap: 20px; }
.gap-16 { gap: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-20 { margin-bottom: 20px; }
.rounded-16 { border-radius: 16px; }
.shadow-soft { box-shadow: 0 2px 12px rgba(33,42,54,0.05); }

/*-------------------------------*/
/*   TYPOGRAPHY SCALE            */
/*-------------------------------*/
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-48 { font-size: 48px; }

/*-------------------------------*/
/*  HIDE/SHOW FOR RESPONSIVE     */
/*-------------------------------*/
.desktop-nav { display: flex; }
@media (max-width:768px) {
  .desktop-nav { display: none; }
}

/*-------------------------------*/
/* SCANDINAVIAN DETAILS          */
/* Subtle accents, clean cards   */
.text-section strong {
  color: #B89F7B;
  font-weight: 700;
}
.feature-grid > div img {
  width: 40px;
  margin-bottom: 13px;
}
.footer-brand img {
  filter: grayscale(30%);
  opacity: 0.92;
  transition: opacity 0.2s;
}
.footer-brand img:hover,
.footer-brand img:focus {
  opacity: 1;
}

/*-------------------------------*/
/* Miscellaneous                 */
/*-------------------------------*/
::-webkit-scrollbar {
  width: 12px;
  background: #F5F3EE;
}
::-webkit-scrollbar-thumb {
  background: #e6e1d9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B89F7B;
}

/*-------------------------------*/
/* Accessibility focus styles    */
:focus {
  outline: 2px dashed #B89F7B;
  outline-offset: 2px;
}

/*----------------------------------------*/
/* END Zeitspiegel Scandinavian_Clean CSS */
/*----------------------------------------*/
