/* === 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #fff;
  color: #101010;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');
:root {
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --primary: #101010;
  --secondary: #666;
  --accent: #fff;
  --gray1: #eaeaea;
  --gray2: #bdbdbd;
  --gray3: #222;
  --brand-green: #274C35;
  --brand-yellow: #F4C95D;
  --focus-ring: #232323;
}

/* === TYPOGRAPHY & BASE === */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  background: var(--accent);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol, address {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
a {
  color: var(--primary);
  text-decoration-thickness: 1.5px;
  transition: color 0.15s;
  outline: none;
}
a:hover, a:focus {
  color: var(--brand-green);
  text-decoration: underline;
}
strong, b {
  color: var(--primary);
  font-weight: 600;
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--gray3);
  padding-left: 18px;
  color: var(--primary);
  background: var(--gray1);
  margin-bottom: 20px;
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 820px;
}
/* Section Spacing */
section {
  width: 100%;
  background: transparent;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
}
@media (max-width: 768px) {
  .section,
  main > section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

/* === FLEX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06), 0 1.5px 5px rgba(0,0,0,0.07);
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray1);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.testimonial-card p {
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Blog Lists/Grids */
.blog-list,
.blog-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-article-preview {
  flex: 1 1 300px;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 22px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-article-preview:hover,
.blog-article-preview:focus-within {
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  transform: translateY(-1px) scale(1.01);
}

/* Recipe Cards/Grids */
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.recipe-card {
  flex: 1 1 260px;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 18px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.recipe-card:hover,
.recipe-card:focus-within {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: scale(1.015);
}

/* Tipps Grid */
.tipps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.tipps-grid > ul,
.tipps-grid > ol {
  flex: 1 1 270px;
}

/* === HEADER/NAVIGATION === */
header {
  background: var(--accent);
  box-shadow: 0 1.5px 16px rgba(0,0,0,0.03);
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 0;
  border-radius: 6px;
  transition: color 0.15s, background 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--gray1);
  color: var(--brand-green);
}
.primary-cta {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 28px;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.063);
  letter-spacing: 0.2px;
  border: 1px solid var(--primary);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.primary-cta:hover,
.primary-cta:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--brand-green);
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(39, 76, 53, 0.10);
}

header img {
  height: 46px;
  width: auto;
  display: block;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  padding: 10px 16px;
  font-size: 1.6rem;
  border-radius: 8px;
  z-index: 101;
  transition: background 0.17s, transform 0.17s;
  margin-left: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-green);
  outline: 3px solid var(--focus-ring);
}
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 12px 60px rgba(0,0,0,0.15);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.88,.16,.29,.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 24px;
  margin-bottom: 34px;
  background: var(--primary);
  color: var(--accent);
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 14px;
  transition: background 0.16s;
  z-index: 2100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--gray3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--primary);
  padding: 10px 6px 10px 2px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--gray1);
  color: var(--brand-green);
}
@media (max-width: 768px) {
  .mobile-nav {
    padding-left: 14px;
  }
}

/* === MAIN BUTTON & FORM ELEMENTS === */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  font-family: var(--font-display);
  font-weight: 600;
}
select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 13px;
  background: var(--gray1);
  border-radius: 7px;
  border: 1px solid var(--gray2);
  margin-left: 8px;
  color: var(--primary);
  transition: border 0.13s;
}
select:focus {
  border-color: var(--brand-green);
  outline: none;
}
label {
  font-weight: 500;
  color: var(--primary);
  margin-right: 8px;
  font-family: var(--font-display);
}

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: var(--accent);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 16px;
  margin-bottom: 8px;
}
.faq-accordion h3 {
  font-size: 1.15rem;
  color: var(--brand-green);
  margin-bottom: 8px;
  cursor: pointer;
}
.faq-accordion > div > div {
  color: var(--secondary);
  font-size: 1rem;
}

/* === TEXTUAL SECTIONS === */
.text-section {
  margin-bottom: 16px;
}

/* === FOOTER === */
footer {
  background: var(--gray3);
  color: var(--accent);
  padding: 48px 0 16px 0;
  font-size: 0.98rem;
  letter-spacing: .2px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
footer address {
  font-style: normal;
  color: var(--gray1);
  line-height: 1.7;
  margin: 0 0 8px 0;
}
footer nav {
  display: flex;
  gap: 16px;
}
footer nav a {
  color: var(--gray1);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.12s;
}
footer nav a:hover {
  color: var(--brand-yellow);
}
footer img {
  height: 36px;
  margin-bottom: 7px;
}
footer p {
  color: var(--gray2);
  font-size: .9rem;
}

/* === MODALS/OVERLAYS (Cookies) === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 3000;
  background: var(--accent);
  box-shadow: 0 -2px 14px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 36px 20px 20px;
  border-top: 2px solid var(--gray2);
  animation: cookie-slidein 0.6s cubic-bezier(.88,.16,.29,.95);
}
@keyframes cookie-slidein {
  from { transform: translateY(110%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 22px;
  border: 1.5px solid var(--gray3);
  background: var(--gray1);
  color: var(--primary);
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--brand-green);
  outline: 2px solid var(--focus-ring);
}
.cookie-btn.reject {
  background: var(--gray1);
  color: var(--primary);
  border-color: var(--gray3);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--gray2);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--primary);
  border-color: var(--gray2);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--gray1);
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,30,30,0.46);
  align-items: center;
  justify-content: center;
  padding: 28px 8px;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--accent);
  border-radius: 16px;
  max-width: 420px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.19);
  display: flex;
  flex-direction: column;
  padding: 30px 28px 22px 28px;
  animation: modalin 0.35s cubic-bezier(.88,.16,.29,.95);
}
@keyframes modalin {
  from { transform: scale(0.90) translateY(80px); opacity:0; }
  to   { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
  margin-top: 8px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.cookie-toggle-row label {
  font-size: 1.07rem;
  font-family: var(--font-display);
  flex: 1 1 auto;
  margin-right: 8px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: var(--gray2);
  position: relative;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--brand-green);
}
.cookie-toggle-thumb {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: 2px;
  top: 2px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  transition: left 0.19s cubic-bezier(.8,.4,.22,1.1);
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
/* Modal close btn */
.cookie-modal-close {
  background: var(--gray2);
  color: var(--gray3);
  font-size: 1.05rem;
  padding: 4px 14px;
  border-radius: 8px;
  align-self: flex-end;
  margin-bottom: 8px;
  border: none;
  transition: background 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--primary);
  color: var(--accent);
}

/* === UL/OL/LISTS === */
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
}
ul li::marker, ol li::marker {
  color: var(--brand-green);
}

/* === UTILITY & GENERAL === */
img, svg {
  display: inline-block;
  vertical-align: middle;
}
.hide {
  display: none !important;
}

/* === RESPONSIVENESS === */
@media (max-width: 1000px) {
  .container {
    max-width: 95vw;
    padding: 0 2vw;
  }
  .footer .container {
    padding-left: 0;
    padding-right: 0;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  .primary-cta { font-size: 0.98rem; padding: 7px 18px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.01rem; }
  .container { padding: 0 6px; }
}
@media (max-width: 570px) {
  .cookie-banner, .cookie-banner p {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 8px 18px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions {
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer .container {
    padding: 0 8px;
  }
  header img { height: 32px; }
}

/* === VISUAL HIERARCHY & MICRO-INTERACTIONS === */
.card, .testimonial-card, .blog-article-preview, .recipe-card {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .blog-article-preview:hover, .recipe-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  transform: translateY(-2px) scale(1.01);
}

.primary-cta {
  box-shadow: 0 2px 9px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  text-align: center;
}

.primary-cta:active {
  background: var(--brand-green);
  color: var(--accent);
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: 2px solid var(--brand-green);
  outline-offset: 1px;
}

/* === COLOR CONTRAST/ACCESSIBILITY TESTIMONIALS === */
.testimonial-card {
  background: var(--gray1);
  color: var(--primary);
  box-shadow: 0 2.5px 14px rgba(0,0,0,0.12);
}
.testimonial-card strong {
  color: var(--brand-green);
}

/* === CUSTOM MONOCHROME ELEMENTS/ ICONS === */
ul li img, address img {
  margin-right: 8px;
  height: 1.22em;
  width: 1.22em;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) grayscale(100%);
}

@media (max-width: 540px) {
  .container, .content-wrapper {
    padding: 0 2px;
  }
  .blog-list, .blog-teaser-list, .recipe-grid, .tipps-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
}

/* === END === */