/* ========================== CSS RESET & NORMALIZE ========================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #faf7f2;
  color: #2D3A33;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #AA4800;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #8E684D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
}
p, ul, ol {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
button {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
hr {
  border: 0;
  border-top: 1px solid #D4C097;
  margin: 24px 0;
}

/* =========================== FONTS ============================= */
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #2D3A33;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.325rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
}
h4,h5,h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 14px;
}
.subheadline {
  font-size: 1.25rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #8E684D;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* ===================== VINTAGE RETRO COLOR SCHEME ======================= */
:root {
  --primary: #2D3A33;
  --secondary: #D4C097;
  --accent: #AA4800;
  --cream-bg: #faf7f2;
  --card-bg: #f8f1e4;
  --retro-green: #4B6241;
  --retro-brown: #8E684D;
  --retro-orange: #D78B47;
  --retro-pale-yellow: #FFECCC;
  --shadow-retro: 0 2px 24px rgba(141, 101, 54, 0.09);
  --border-retro: #DFCCA2;
}

/* ============================== CONTAINER =============================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ====================== HEADER & NAVIGATION STYLES ======================= */
header {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 3px 12px rgba(80,60,50,0.11);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  min-height: 72px;
}
header img[alt="BrightSerene Raritäten"] {
  width: 215px;
  max-height: 32px;
  filter: grayscale(0.2) sepia(0.08) contrast(1.1);
  margin-right: 32px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: var(--secondary);
  font-size: 1.02rem;
  font-family: 'Lato', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  position: relative;
  transition: background 0.2s, color 0.21s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}
.cta.primary {
  background: var(--accent);
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  padding: 10px 26px;
  font-size: 1.08rem;
  font-weight: bold;
  border-radius: 60px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 12px rgba(141, 101, 54, 0.08);
  border: 2px solid var(--accent);
  margin-left: 32px;
  transition: background 0.25s, color 0.20s, box-shadow 0.18s;
  display: inline-block;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--retro-green);
  border-color: var(--retro-green);
  color: #FFF9F0;
  box-shadow: 0 3px 24px rgba(43,58,51,0.18);
}
.cta.secondary {
  background: #FFF9F0;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 60px;
  font-family: 'Lato', Arial, sans-serif;
  padding: 10px 24px;
  font-size: 1.04rem;
  font-weight: 600;
  margin-top: 18px;
  transition: background 0.20s, color 0.17s, border 0.17s;
  box-shadow: 0 1px 9px 0px rgba(141,101,54,0.08);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 1000px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cta.primary {
    margin-left: 10px;
  }
  nav {
    gap: 11px;
  }
}

/* ============== MOBILE NAVIGATION BURGER MENU ================== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2.1rem;
  padding: 8px 18px;
  margin-left: auto;
  border-radius: 8px;
  z-index: 200;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-brown);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: #f8f1e4;
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.7,0,.22,1.01);
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  outline: none;
  border: none;
  color: var(--primary);
  font-size: 2.35rem;
  align-self: flex-end;
  margin: 18px 22px 6px 0;
  z-index: 2001;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 28px;
  margin-top: 7vh;
}
.mobile-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.16rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 13px 0 13px 4px;
  width: 100%;
  border-radius: 6px;
  background: none;
  transition: background 0.19s, color 0.22s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 960px) {
  nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
  }
}

@media (min-width: 961px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================== MAIN & SECTION ============================= */
main {
  margin-top: 0;
}
section {
  background: none;
  border: 0;
  border-radius: 0;
}

/* ===================== FLEXBOX LAYOUTS & PATTERNS ======================= */
.feature-grid,
.feature-list,
.step-list,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.feature-grid > div,
.feature-list > li,
.step-list > li {
  background: var(--card-bg);
  border: 1.5px solid var(--border-retro);
  border-radius: 18px;
  box-shadow: var(--shadow-retro);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  font-size: 1.025rem;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1.5px solid var(--border-retro);
  box-shadow: var(--shadow-retro);
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  overflow: hidden;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(141, 101, 54, 0.11);
  transform: translateY(-5px) scale(1.021);
}
.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;
  background: #FFF9F0;
  border: 1.5px solid var(--border-retro);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(74,90,80,0.09);
  padding: 20px;
  font-size: 1.12rem;
  margin-bottom: 20px;
  color: #2D3A33;
  max-width: 700px;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  color: #AA4800;
  margin-left: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.quality-guarantees {
  background: var(--retro-pale-yellow);
  border: 1.5px solid #FFD397;
  border-radius: 16px;
  padding: 22px 16px;
  margin-top: 26px;
  margin-bottom: 26px;
  font-style: italic;
  color: var(--retro-green);
  box-shadow: 0 2px 15px rgba(225,200,110,0.07);
}

@media (max-width:740px) {
  .feature-grid > div, .card {
    max-width: 100%;
    min-width: 180px;
    flex: 1 1 100%;
  }
  .testimonial-card {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}

/* ========== SPECIAL LISTS & BLOCKS ========== */
.feature-list, .step-list {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  padding-left: 1em;
      flex-wrap: nowrap;
}
.accepted-items {
  margin-top: 19px;
  background: var(--card-bg);
  border: 1.5px solid var(--border-retro);
  border-radius: 12px;
  padding: 14px 19px;
  font-size: 1rem;
}
.pricing-info {
  color: var(--accent);
  font-style: italic;
  margin-top: 8px;
}
.address-map {
  margin-top: 9px;
}

/* ============= BUTTONS & LINKS ================== */
button, .button {
  font-family: 'Lato', Arial, sans-serif;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 10px 26px;
  border-radius: 60px;
  font-size: 1.06rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, border 0.14s, box-shadow 0.16s;
  outline: none;
  margin: 0 8px 8px 0;
  box-shadow: 0 1px 9px rgba(141,101,54,0.08);
}
button:hover, .button:hover,button:focus, .button:focus {
  background: var(--retro-green);
  border-color: var(--accent);
  color: #FFF9F0;
}

/* ============= FORMS & INPUTS (for contact forms on extended site) ============== */
input, textarea, select {
  font: inherit;
  padding: 9px 13px;
  border-radius: 8px;
  border: 1.2px solid #CFBBA2;
  background: #FFF9F0;
  margin-bottom: 16px;
  display: block;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 2px 2px var(--retro-orange);
}
label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: block;
}

/* ========== TABLE / ADDRESS SUMMARY =========== */
.contact-information {
  background: var(--card-bg);
  border: 1.5px solid var(--border-retro);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.07rem;
}

@media (max-width: 660px) {
  .contact-information {
    padding: 10px 8px;
  }
}

/* ========== FOOTER STYLES =========== */
footer {
  background: #F3E8CF;
  color: #2D3A33;
  border-top: 2.5px dashed var(--retro-brown);
  padding: 44px 0 20px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
footer h3 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
footer a {
  color: var(--accent);
  word-break: break-word;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 7px;
}
footer .social-icons {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
}
@media (max-width:850px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* =================== COOKIE CONSENT BANNER & MODAL ================== */
.cookie-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #F3E8CF;
  color: #2D3A33;
  border-top: 2.5px solid #D4C097;
  z-index: 18000;
  padding: 18px 25px 16px 22px;
  box-shadow: 0 -2px 20px rgba(80,50,20,0.09);
  font-size: 1.02rem;
  transition: transform 0.32s, opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(8em);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 1rem;
  border: 1.3px solid var(--accent);
  margin: 0 4px;
  box-shadow: none;
  transition: background 0.18s, color 0.14s, border 0.13s;
  font-weight: 600;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-green);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: var(--retro-brown);
  border: 1.3px solid var(--retro-brown);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--accent);
  border-color: var(--accent);
}

/* COOKIE MODAL POPUP STYLES */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(50,30,12,0.25);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff9f0;
  border-radius: 18px;
  border: 2px solid var(--border-retro);
  width: 98vw;
  max-width: 400px;
  padding: 32px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 3px 33px rgba(141,101,54,0.17);
  z-index: 20001;
  animation: modalIn .35s cubic-bezier(.7,0,.22,1.01);
}
@keyframes modalIn {
  0% {transform: scale(0.8) translateY(58px); opacity:0;}
  70% {transform: scale(1.05) translateY(-8px); opacity:0.8;}
  100% {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
}
.cookie-category label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  color: #2D3A33;
  margin-left: 10px;
  font-weight: 500;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #8E684D;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 13px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.36rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--retro-brown);
}
@media (max-width: 560px) {
  .cookie-modal {
    padding: 22px 10px;
    max-width: 94vw;
  }
}

/* ====================== DECORATIVE RETRO ELEMENTS ======================= */

/* Retro style subtle backgrounds for section headers or blockquotes */
.section h2, .content-wrapper > h2 {
  position: relative;
  display: inline-block;
  padding-right: 12px;
  background: linear-gradient(90deg,#FFECCC 80%,rgba(255,255,255,0) 100%);
  border-bottom: 4px double var(--accent);
  padding-bottom:2px;
  margin-bottom:10px;
}
.section h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 3.5px;
  border-radius: 6px;
  background: var(--accent);
  position: absolute;
  left: -42px;
  bottom: 4px;
}
@media (max-width: 700px) {
  .section h2::before {
    display: none;
  }
}

/* Retro dotted border for separations */
.section {
  border-top: 2.5px dotted #e5c487;
}

/* Subtle retro paper/card texture effect */
.card, .feature-grid > div, .testimonial-card {
  background-image: repeating-linear-gradient(120deg, rgba(250,247,242,0.15) 0px, rgba(255,217,145,0.02) 24px, transparent 64px);
}

/* Decorative underlines for .subheadline */
.subheadline {
  display: inline-block;
  border-bottom: 2px dashed var(--retro-orange);
  padding-bottom: 5px;
  background: none;
}

/* =================== MICRO-INTERACTIONS & TRANSITIONS =================== */
.cta.primary, .cta.secondary, button, a, .card, .testimonial-card, .feature-grid > div, .card {
  transition: box-shadow 0.17s, background 0.20s, color 0.16s, transform 0.17s;
}
.cta.primary:active, .cta.secondary:active, button:active, .feature-grid > div:active {
  transform: translateY(2px) scale(0.98);
}

/* ===================== VISUAL HIERARCHY SPACING ===================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom:20px;
}
.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;
}

/* Ensure all sections/cards/blocks have MIN 20px margin-bottom */
.section, .content-wrapper, .card, .feature-grid > div,
.testimonial-card, .accepted-items, .contact-information, .quality-guarantees, .feature-item {
  margin-bottom: 20px;
}

/* Prevent content overlapping! */
.section, .container, .content-wrapper {
  z-index: 1;
}

/* ======================== RESPONSIVE = MOBILE-FIRST ======================= */
@media (max-width:600px) {
  html {
    font-size: 15px;
  }
  h1 {font-size:2rem;}
  h2 {font-size: 1.36rem;}
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 6px;
  }
}

/* ================== PRINT STYLES ================== */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  .container, main {
    padding: 0;
  }
}
section {
  padding: 10px 0;
}