/* CSS RESET & NORMALIZE */
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: #FFF8EF;
  color: #41332C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
*:focus {
  outline: 2px dashed #FFCF48;
  outline-offset: 3px;
}

/* RETRO COLORS & TYPOGRAPHY */
:root {
  --primary: #222B38;
  --secondary: #FFCF48;
  --accent: #E7EEF7;
  --vintage-brown: #B1876A;
  --vintage-red: #D94F3C;
  --vintage-green: #4A7453;
  --vintage-cream: #FFF8EF;
  --vintage-orange: #E68537;
  --vintage-blue: #54627B;
  --contrast-light: #FFF8EF;
  --font-display: 'Oswald', Impact, Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-card: 0px 4px 20px rgba(120,90,32,0.13);
  --rounded-lg: 18px;
  --rounded-md: 9px;
}

/* VINTAGE FONTS LOAD (RECOMMEND ADDING IN <head>) */
/* FONTS NOT INCLUDED IN CSS, assume loaded as per brand */

/* GEN CONTAINER & FLEX HELPER */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.flex-align {
  display: flex;
  align-items: center;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

/* SPACING UTILS + SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-cream);
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-card);
}
.section:last-child {
  margin-bottom: 0;
}

/* GENERAL TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.015em;
  color: var(--primary);
  text-shadow: 2px 0 0 #FFCF48, 0 2px 0 #FFCF48;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #41332C;
  margin-bottom: 16px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
.subheadline {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
strong {
  font-weight: 700;
  color: var(--vintage-blue);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 7px 0 rgba(41,21,10,0.11), 0 1.5px 0 #B1876A;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.23s, transform 0.14s, box-shadow 0.17s;
  margin-top: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 18px 0 rgba(41,21,10,0.22);
}
/* Vintage 'ghost' button */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--rounded-md);
  padding: 11px 30px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  transition: background 0.14s, color 0.16s, border-color 0.14s;
}
.btn-ghost:hover, .btn-ghost:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  box-shadow: 0 2px 24px rgba(34,43,56,0.11);
  position: relative;
  z-index: 30;
}
header .container {
  justify-content: space-between;
  min-height: 70px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  padding: 7px 3px;
  border-radius: var(--rounded-md);
  transition: background 0.2s, color 0.20s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* Mobile BURGER MENU button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.15rem;
  color: var(--secondary);
  cursor: pointer;
  z-index: 41;
  margin-left: 10px;
  outline: none;
  padding: 8px 16px 8px 8px;
  border-radius: var(--rounded-md);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--vintage-brown);
  background-image:
     repeating-linear-gradient(135deg,var(--secondary) 0 4px, transparent 4px 48px),
     repeating-linear-gradient(225deg,var(--accent) 0 2px, transparent 2px 36px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 38px;
  padding-left: 0;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.34,.83,.78,.98);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 7px;
  z-index: 100;
  transition: background 0.13s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
  margin-left: 40px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.20rem;
  font-weight: 700;
  padding: 13px 0 13px 0;
  border-radius: var(--rounded-md);
  transition: background 0.17s;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--vintage-red);
}

/* HERO SECTIONS & RETRO ORNAMENT */
.hero-section {
  background: var(--secondary);
  background-image: repeating-linear-gradient(160deg, #E68537 0 4px, transparent 4px 62px), repeating-linear-gradient(-140deg, #FFCF48 0 3px, transparent 3px 41px);
  padding: 50px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid var(--primary);
  position: relative;
}
.hero-section h1, .hero-section .subheadline {
  color: var(--primary);
  text-shadow: none;
}
.hero-section .btn-primary {
  margin-top: 24px;
}

/* CARD CONTAINERS & FLEX WRAPS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 22px;
  flex: 1 1 250px;
  min-width: 245px;
  max-width: 320px;
  transition: transform 0.15s, box-shadow 0.16s;
  border: 2.5px solid var(--vintage-orange);
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 30px rgba(68,55,21,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* CONTENT GRID */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

/* FLEX SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FEATURE & USP RETRO CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 38px;
  justify-content: center;
}
.feature {
  background: var(--accent);
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-card);
  padding: 36px 24px 28px 24px;
  text-align: center;
  border: 2px solid var(--vintage-brown);
  max-width: 270px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.feature h3 {
  color: var(--vintage-red);
  margin-bottom: 8px;
}
.feature:hover {
  border-color: var(--vintage-red);
  box-shadow: 0 7px 30px #E7EEF799;
  transform: translateY(-4px) scale(1.04);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RECENT ARTICLES / BLOG HIGHLIGHTS */
.blog-highlights {
  background: var(--vintage-cream);
  padding: 44px 0 36px 0;
  border-top: 3px dashed var(--vintage-orange);
}
.recent-articles-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recent-articles-list li a {
  color: var(--vintage-red);
  font-family: var(--font-display);
  font-size: 1.13rem;
  text-decoration: underline dotted;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.15s;
}
.recent-articles-list li a:hover {
  color: var(--primary);
}

/* TESTIMONIALS & REVIEW CARDS */
.testimonials {
  background: var(--accent);
  padding: 44px 0 50px 0;
  border-top: 3px dashed var(--vintage-brown);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffdfa;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 11px rgba(68,55,21,0.07);
  border-left: 6px solid var(--vintage-green);
  position: relative;
  flex-wrap: wrap;
}
.testimonial-card p {
  color: #1c1410;
  font-size: 1rem;
  font-weight: 500;
  flex: 1 1 66%;
  margin-bottom: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-left: 10px;
}
.user-rating {
  color: var(--vintage-orange);
  font-size: 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #FEE8B9;
}
.testimonial-card strong {
  color: var(--vintage-blue);
  font-size: 1rem;
}

/* CARDS, FILTERS, TIPS, STEPS, FAQ ETC. */
.filter-options, .filter-by-category, .tag-filters {
  font-family: var(--font-display);
  color: var(--vintage-red);
  font-size: 1.07rem;
  margin: 10px 0 4px 0;
  letter-spacing: 0.01em;
}
.test-list, .top-stories, .tips-list, .faq-list, .faq-contact-list, .step-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.test-list li a, .top-stories li a {
  color: var(--vintage-red);
  font-family: var(--font-display);
  font-size: 1.08rem;
  text-decoration: underline dotted;
  padding-left: 3px;
  transition: color 0.12s;
}
.test-list li a:hover, .top-stories li a:hover {
  color: var(--vintage-blue);
}
.tips-list li strong {
  color: var(--vintage-green);
  font-family: var(--font-display);
}
.step-list li strong {
  color: var(--primary);
}
.faq-short ul, .faq-short li {
  margin-bottom: 0;
  color: var(--primary);
}
.kontakt-details p, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 44px 0 18px 0;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 5px double var(--secondary);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo-social {
  flex: 1 1 70px;
  max-width: 90px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.16s, text-shadow 0.19s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  font-size: 0.97rem;
  color: var(--accent);
  max-width: 270px;
  font-family: var(--font-body);
}
.footer-contact img {
  height: 17px;
  width: 17px;
  vertical-align: middle;
  margin-right: 7px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
  background: #2aabb4ce;
  color: #FFF8EF;
  padding: 21px 18px 16px 18px;
  border-top: 4px solid var(--vintage-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 24px #222b3880;
  animation: cookieSlideIn 0.42s cubic-bezier(.34,.96,.54,1.1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: white;
  margin-bottom: 13px;
  text-align: center;
  font-size: 1.01rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-banner .cookie-btns .btn-primary,
.cookie-banner .cookie-btns .btn-ghost {
  margin: 0;
  font-size: 1rem;
  box-shadow: none;
  padding: 9px 24px;
}
.cookie-banner .btn-settings {
  border: 2px solid var(--secondary);
  background: none;
  color: var(--secondary);
  border-radius: var(--rounded-md);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,43,56, 0.78);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--vintage-cream);
  color: var(--primary);
  border-radius: 17px;
  box-shadow: 0 13px 44px #222b38b1;
  padding: 36px 24px 22px 24px;
  max-width: 420px;
  width: 98vw;
  position: relative;
  min-width: 265px;
  font-family: var(--font-body);
  animation: modalPopIn 0.43s cubic-bezier(.36,1.34,.62,1.01);
}
@keyframes modalPopIn {
  0% { transform: translateY(30px) scale(0.93); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 14px;
}
.cookie-modal ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 39px;
  height: 21px;
  border-radius: 12px;
  background: #ddd8d1;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
  margin-left: auto;
}
.cookie-toggle[data-state='on'] {
  background: var(--secondary);
}
.cookie-toggle[data-state='on']::after {
  left: 18px;
  background: var(--vintage-orange);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--primary);
  transition: left 0.17s, background 0.18s;
}
.cookie-modal .cookie-category[aria-disabled='true'] {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-ghost {
  font-size: 1.01rem;
  padding: 8px 19px;
  margin-top: 12px;
  margin-right: 7px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--vintage-blue);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 7px;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover {
  background: #FFCF4840;
}

/*  --- RESPONSIVE/MOBILE FIRST STYLES ---  */
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 0 5px;
  }
  .feature-grid {
    gap: 21px;
  }
}
@media (max-width: 880px) {
  .content-wrapper {
    max-width: 99vw;
    padding: 0 2px;
  }
  .feature-grid {
    flex-wrap: wrap;
  }
  .footer-logo-social {
    max-width: 60px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .content-grid, .card-container, .feature-grid, footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13px 21px;
  }
  .footer-contact {
    max-width: 98vw;
    margin-bottom: 12px;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 34px;
  }
  .hero-section {
    padding: 38px 0 34px 0;
  }
  .card {
    padding: 22px 8px;
    max-width: 98vw;
  }
}
@media (max-width: 430px) {
  .logo img {
    height: 38px;
  }
  h1 {
    font-size: 1.68rem;
  }
  h2 {
    font-size: 1.20rem;
  }
  .section {
    padding: 19px 3px;
    margin-bottom: 23px;
  }
  .btn-primary, .btn-ghost {
    font-size: 0.99rem;
    padding: 8px 12px;
  }
  .testimonial-meta strong, .testimonial-meta {
    font-size: 0.93rem;
  }
}

/* MICRO-INTERACTIONS / ANIMATIONS */
.btn-primary, .btn-ghost, .main-nav a, .mobile-nav a {
  transition: background 0.19s, color 0.19s, transform 0.13s;
}
.feature, .card {
  transition: box-shadow 0.17s, border-color 0.17s, background 0.17s, transform 0.13s;
}

/* VINTAGE PATTERNS (BORDERS & DIVIDERS) */
.section, .blog-highlights, .testimonials {
  border-radius: var(--rounded-lg);
  border-bottom: 3px dashed var(--vintage-brown);
  box-shadow: var(--shadow-card);
}

/* Utility: Hide visually (for accessibility) */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
