/* --- 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: #f9fafb;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul,ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --- LUXURY PREMIUM COLOR/TYPE SET --- */
:root {
  --brand-primary: #285338;
  --brand-secondary: #fff;
  --brand-secondary-bg: #E8F5E1;
  --brand-accent: #B66F26;
  --brand-accent-light: #E4C488;
  --brand-gold: #D4AF37;
  --text-main: #2A2B2D;
  --text-dark: #18191a;
  --text-light: #fff;
  --neutral-bg: #FAFAFA;
  --card-bg: #FFFFFF;
  --card-border: #EAEBEF;
  --shadow: 0 2px 14px 0 rgba(40, 59, 44, 0.07);
  --border-radius: 18px;
  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* --- TYPOGRAPHY --- */
h1, .h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--brand-primary); margin-bottom: 24px; line-height: 1.15; letter-spacing: -1px; }
h2, .h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--brand-primary); margin-bottom: 20px; line-height: 1.2; }
h3, .h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--brand-primary); margin-bottom: 8px; line-height: 1.25; }
h4, .h4 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--brand-primary); }
h5, .h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--brand-primary); }
h6, .h6 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 500; color: var(--brand-primary); }
p, li, ul, ol {
  font-family: var(--font-body);  font-size: 1rem; color: var(--text-main); line-height: 1.6; margin-bottom: 12px;
}
strong {font-weight: 600;}

.section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  align-items: flex-start;
  background: var(--brand-secondary-bg);
  border-radius: var(--border-radius);
  box-shadow: none;
  padding: 40px 32px;
  margin-bottom: 24px;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: var(--card-bg);
  border-bottom: 1px solid #ede5cf;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
header > a img {
  height: 46px;
  margin: 20px 36px 20px 0;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex: 1 1 0%;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-primary);
  transition: color 0.2s, border 0.2s;
  padding: 7px 12px;
  border-radius: 7px;
  position: relative;
}
header nav a:not(.cta-btn):hover, header nav a:focus {
  color: var(--brand-accent);
  background: var(--brand-secondary-bg);
}
.cta-btn {
  background: var(--brand-accent);
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 9px 32px;
  box-shadow: 0 2px 10px 0 rgba(214,184,92,0.04);
  transition: background 0.23s, box-shadow 0.23s, transform 0.16s;
  margin-left: 8px;
  outline: none;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-gold);
  color: var(--brand-primary);
  box-shadow: 0 2px 18px 0 rgba(255,215,76,0.12);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-accent);
  padding: 10px;
  cursor: pointer;
  margin-left: 16px;
}
@media (max-width: 992px) {
  header nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header { padding: 0 5px; }
  header > a { margin-right: 15px; }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU SLIDE --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,43,59,0.86);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  /* Transform stays off by default. Activated class will slide in navigation. */
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.3s;
}
.mobile-menu nav.mobile-nav {
  background: #fff;
  border-radius: 0 0 0 20px;
  min-width: 75vw;
  max-width: 450px;
  height: 100vh;
  min-height: 100vh;
  padding: 36px 32px 32px 32px;
  box-shadow: 0 4px 34px 0 rgba(60,49,21,0.17);
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(110%);
  transition: transform 0.42s cubic-bezier(.17,.67,.83,.67);
}
.mobile-menu.open nav.mobile-nav {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(.17,.67,.83,.67);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2rem;
  margin: 16px 24px 0 0;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary-bg);
  color: var(--brand-accent);
}
.mobile-nav a {
  display: block;
  padding: 13px 0 13px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-primary);
  border-bottom: 1px solid #e7e7e7;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: var(--brand-secondary-bg);
  border-radius: 6px;
  padding-left: 10px;
}

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

/* --- MAIN CONTENT --- */
main {
  width: 100%; min-height: 68vh;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
  }
}

/* --- FLEX LAYOUTS (NO GRID!) --- */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
  overflow: hidden;
  border: 1.5px solid var(--card-border);
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(45, 43, 33, 0.14);
  transform: translateY(-5px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* --- FEATURE LISTS etc. --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- LISTS & ICON LISTS --- */
ul, ol {
  padding-left: 0;
  margin-left: 0;
}
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1rem;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 32px;
  margin-bottom: 20px;
  background: #ffffffcc;
  border: 1.5px solid var(--brand-gold);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(210,187,71, 0.06);
  font-size: 1.1rem;
  position: relative;
  color: var(--brand-primary);
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(188,163,66,0.16);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card p {
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-weight: 500;
}
.testimonial-card span {
  font-size: .95rem;
  font-style: italic;
  color: var(--brand-accent);
  padding-left: 8px;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 18px 14px;
    gap: 10px;
  }
}

/* --- PARTNER LOGOS (UEBER UNS) --- */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 12px;
}
.partner-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(0.25) contrast(1.15);
}

/* --- RECIPE CARDS ETC. --- */
.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.recipe-card {
  background: var(--card-bg);
  border: 2px solid #f2e3c6;
  box-shadow: 0 2px 11px 0 rgba(80,72,21,0.05);
  border-radius: 16px;
  padding: 28px 22px 20px 22px;
  min-width: 265px;
  max-width: 340px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.recipe-card:hover {
  box-shadow: 0 8px 32px 0 rgba(223,171,63,0.17);
  border-color: var(--brand-gold);
  transform: scale(1.023) translateY(-4px);
}
.recipe-card h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
  color: var(--brand-primary);
  font-family: var(--font-display);
}
.recipe-card p {
  color: var(--text-main);
  font-size: .97rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .recipe-cards {
    gap: 14px;
  }
  .recipe-card {
    min-width: 180px;
    max-width: 100%;
    padding: 18px 13px;
  }
}
@media (max-width: 600px) {
  .recipe-cards {
    flex-direction: column;
  }
  .recipe-card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 20px;
  }
}

/* --- SELECTS & INPUTS --- */
input[type="search"], select {
  border: 1.5px solid #d4c99a;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  transition: border 0.18s, box-shadow 0.18s;
  outline: none;
  background: #fffefc;
  color: var(--brand-primary);
  margin: 14px 0 0 0;
  box-shadow: 0 2px 6px 0 rgba(229,205,87,0.03);
}
input[type="search"]:focus, select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px #ead7be77;
}
label {
  font-size: .97rem; font-family: var(--font-display); color: var(--brand-primary); font-weight: 600; display: block; margin-bottom: 8px;
}

/* --- BUTTONS --- */
button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 9px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--brand-accent);
  color: #fff;
  transition: background 0.19s, box-shadow 0.17s, color 0.17s, transform 0.12s;
  font-weight: 700;
  box-shadow: 0 2px 7px 0 rgba(210,154,53,0.09);
}
button:hover, button:focus {
  background: var(--brand-gold);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 540px;
  background: #fffefb;
  box-shadow: 0 0 26px 0 rgba(40,59,44,0.19);
  border-radius: 36px 36px 0 0;
  border: 2px solid var(--brand-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10001;
  padding: 32px 30px 22px 30px;
  gap: 18px;
  transition: opacity 0.3s, transform 0.4s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(40px);
}
.cookie-banner strong { color: var(--brand-primary);}
.cookie-banner p {
  font-size: 1rem; color: var(--brand-primary); margin: 0 0 10px 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.cookie-banner button,
.cookie-banner .cta-btn {
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1.5px solid #e9d293;
  background: var(--brand-accent);
  color: #fff;
  margin: 0;
  box-shadow: 0 2px 10px 0 rgba(214,184,92,0.08);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid #d3d3d3;
}
.cookie-banner .cookie-setting {
  background: var(--brand-primary);
  color: #fff;
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus { filter: brightness(1.06); }

/* --- COOKIE PREFERENCES MODAL --- */
#cookie-modal {
  position: fixed;
  z-index: 12001;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,32,40,0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: 0 5px 32px 0 rgba(40,59,44,0.19);
  border: 2px solid var(--brand-gold);
  max-width: 440px;
  width: 94vw;
  padding: 36px 38px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-header {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--brand-gold);
  width: 19px; height: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  right: 33px;
  top: 23px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-accent);
}

@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 22px 10px;
    font-size: .9rem;
  }
  .cookie-modal-close {
    right: 7px;
    top: 7px;
  }
  .cookie-banner {
    padding: 15px 8px 12px 8px;
    font-size: .96rem;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--card-bg);
  border-top: 2px solid #eee3d3;
  padding: 44px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a img {
  height: 38px;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  font-size: 1.04rem;
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-weight: 600;
  transition: color 0.18s;
  margin-bottom: 2px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .96rem;
  color: var(--brand-primary);
}
.footer-contact img {
  height: 18px; width: 18px; margin-right: 6px; display: inline-block; vertical-align: middle;
}

@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer { padding: 26px 0 15px 0; }
  footer .container { gap: 11px; }
  .footer-contact { font-size: .93rem; }
}

/* --- GENERAL SPACING & LUXURY ACCENTS --- */
.section, .content-wrapper, .card-container, .content-grid, .recipe-cards {
  margin-bottom: 0;
}
.card, .recipe-card, .testimonial-card {
  border-radius: 18px;
}
hr {
  border: 0; border-top: 2px solid var(--brand-gold); margin: 26px 0;
}

/* --- LUXURY MICRO-INTERACTIONS/EFFECTS --- */
.card, .recipe-card, .testimonial-card {
  transition: box-shadow .21s, border .19s, transform .16s;
  will-change: box-shadow, transform;
}
.cta-btn, button {
  box-shadow: 0 3px 18px 0 rgba(215,180,65,0.055);
  transition: background .18s, color .16s, box-shadow .16s, transform .15s;
}
.cta-btn:active, button:active {
  transform: scale(.98);
}

/* --- RESPONSIVE: COLUMNS TO STACK --- */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 0; padding-right: 0;
  }
  main {
    gap: 0;
  }
}
@media (max-width: 600px) {
  .section, section {
    padding: 19px 5px;
    margin-bottom: 30px;
  }
  .content-wrapper {
    gap: 13px;
  }
}

/* --- FORMS ETC. --- */
input, textarea {
  border: 1.5px solid #d2c578;
  border-radius: 8px;
  padding: 9px 15px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(230,201,95,0.02);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px #eedcaa5e;
}

/* --- OL/UL INNER (FAQ/MEHRSTUFIG) --- */
ol {
  counter-reset: ol;
  padding-left: 0;
}
ol li {
  counter-increment: ol;
  padding-left: 30px;
  position: relative;
}
ol li:before {
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* --- ACCESSIBILITY/FOCUS STYLES --- */
a:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .mobile-nav a:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--brand-accent-light),0 0 0 4px var(--brand-gold);
}

/* --- UTILITIES --- */
.hide { display: none !important; }
.show { display: block !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

/* --- PRINT STYLES (FOR LEGAL PAGES) --- */
@media print {
  header, .mobile-menu, footer, .cookie-banner, #cookie-modal { display: none !important; }
  body, main, section, .container { background: #fff !important; color: #000 !important; }
  a { color: #222 !important; text-decoration: underline; }
}

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