/* --- CSS RESET & BASE TYPOGRAPHY --- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FFF7EB;
}
body {
  color: #3B5249;
  background: #FFF7EB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #3B5249;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 700;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  font-weight: 600;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
}
a {
  color: #E6B800;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #be9000;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
ul, ol {
  list-style: none;
}
input, textarea, select, button {
  font-family: inherit;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER/NAVIGATION --- */
header {
  background: #FFF7EB;
  padding: 14px 0 0 0;
  box-shadow: 0 2px 8px rgba(59,82,73,0.06);
  position: sticky;
  top: 0;
  z-index: 15;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 12px;
}
.main-nav a {
  color: #3B5249;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E6B800;
  color: #3B5249;
}
.cta-button.primary {
  background: #E6B800;
  color: #3B5249;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 26px;
  margin-left: 12px;
  box-shadow: 0 2px 12px rgba(230,184,0,0.07);
  border: none;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #FFD95D;
  color: #3B5249;
  box-shadow: 0 4px 18px rgba(230,184,0,0.14);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #E6B800;
  color: #3B5249;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 0 14px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 30;
  transition: background 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #FFD95D;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF7EB;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 90vw;
  max-width: 370px;
  z-index: 300;
  box-shadow: 2px 0 22px rgba(59,82,73,0.13);
  transform: translateX(-120%);
  transition: transform 0.38s cubic-bezier(.39,1.01,.71,.94);
  padding: 22px 28px 18px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  color: #3B5249;
  margin-bottom: 22px;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.18s, background 0.18s;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6B800;
  color: #3B5249;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.mobile-nav a {
  padding: 10px 0 10px 10px;
  color: #3B5249;
  font-size: 1.1rem;
  border-radius: 18px;
  background: transparent;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E6B800;
  color: #3B5249;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 6px;
    font-size: 0.95rem;
  }
}
@media (max-width: 690px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(110deg, #FFF7EB 70%, #FFD95D 130%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px rgba(230,184,0,0.07);
  margin-bottom: 48px;
  padding: 50px 0 45px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero .cta-button {
  margin: 16px auto 0 auto;
  display: inline-block;
}
.hero.klassiker, .hero.saisonal, .hero.kochkurse, .hero.kontakt, .hero.schnelle-kueche, .hero.thank-you {
  background: linear-gradient(120deg, #FFF7EB 70%, #E6B800 130%);
}

/* --- FEATURE LISTS & CARDS --- */
.features {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 24px rgba(59,82,73,0.07);
  margin-bottom: 60px;
}
.features .content-wrapper > h2 {
  text-align: center;
}
.features-grid, .fast-recipe-list,
.tradition-list, .season-highlights, .course-grid, .team-grid, .services-list, .recipe-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
}
.features-grid li, .fast-recipe-list li,
.tradition-list li, .season-highlights li,
.course-grid li, .team-grid li, .recipe-card-list li, .services-list li {
  background: #FFF7EB;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(230,184,0,0.08);
  padding: 28px 20px 22px 20px;
  flex: 1 1 220px;
  max-width: 330px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.21s, transform 0.21s;
  border: 1px solid #FFE7B5;
}
.features-grid li:hover,
.fast-recipe-list li:hover,
.tradition-list li:hover,
.season-highlights li:hover,
.course-grid li:hover,
.team-grid li:hover,
.services-list li:hover,
.recipe-card-list li:hover {
  box-shadow: 0 6px 26px rgba(230,184,0,0.17), 0 1.5px 0 rgba(230,184,0,0.07);
  transform: translateY(-2px) scale(1.025);
}
.features-grid li img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 10px;
  background: #FFF7EB;
  box-shadow: 0 1px 8px rgba(225,179,0,0.07);
  object-fit: contain;
}

/* Extra feature badges/badges */
.feature-badge, .fast-badge, .highlight-badge {
  background: #E6B800;
  color: #3B5249;
  font-size: 0.92rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border-radius: 14px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.fast-badge, .highlight-badge {
  background: #FFD95D;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #FFF7EB;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
.testimonials .content-wrapper {
  align-items: center;
  gap: 20px;
  max-width: 670px;
  margin: auto;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 14px rgba(59,82,73,0.10);
  padding: 28px 32px 16px 32px;
  margin-bottom: 20px;
  color: #294036;
}
.testimonial-card p {
  font-size: 1.13rem;
  line-height: 1.63;
  margin-bottom: 0;
}
.testimonial-meta {
  margin-top: 6px;
  color: #A5936D;
  font-size: 0.96rem;
  font-style: italic;
}

.testimonial-card + .testimonial-card {
  margin-top: 18px;
}

/* --- RECIPE CARDS --- */
.recipe-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
}
.recipe-card-list li {
  background: #FFFCF4;
  border: 1px solid #FFE7B5;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(230,184,0,0.07);
  padding: 20px 22px 20px 22px;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.21s, transform 0.19s;
}
.recipe-card-list li:hover {
  box-shadow: 0 7px 22px rgba(230,184,0,0.16), 0 1.5px 0 rgba(230,184,0,0.08);
  transform: translateY(-2px) scale(1.012);
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.98rem;
  color: #B18400;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.rating {
  color: #E6B800;
  font-size: 1rem;
}

/* --- FILTER BAR (Rezepte) --- */
.filter-bar {
  background: #FFF7EB;
  border-bottom: 2px solid #FFD95D;
  padding: 16px 0 14px 0;
  margin-bottom: 30px;
}
.filter-bar .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.filter-bar input[type="search"] {
  border: 1px solid #FFE7B5;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1.05rem;
  width: 200px;
  transition: border 0.2s;
}
.filter-bar input[type="search"]:focus {
  border-color: #E6B800;
  outline: none;
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-tags span {
  background: #FFD95D;
  color: #3B5249;
  border-radius: 13px;
  padding: 5px 12px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
}
.filter-tags span:hover {
  background: #E6B800;
}
.sort-options {
  display: flex;
  align-items: center;
  gap: 7px;
}
.sort-options label {
  font-size: 0.97rem;
  color: #A5936D;
}
.sort-options select {
  border-radius: 12px;
  border: 1px solid #FFE7B5;
  padding: 5px 9px;
  font-size: 0.98rem;
  background: #fff;
}

/* --- SERVICES OVERVIEW/LIST --- */
.services-overview, .services, .services.saisonal {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 24px rgba(59,82,73,0.07);
  margin-bottom: 60px;
  padding: 38px 0;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: center;
}
.services-list li {
  background: #FFF7EB;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(230,184,0,0.05);
  padding: 22px 18px 20px 18px;
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid #FFE7B5;
}
.services-list .price {
  color: #E6B800;
  font-size: 1.06rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
}
.services-list .cta-button {
  margin-top: 8px;
}
.services-list li:hover {
  box-shadow: 0 7px 19px rgba(230,184,0,0.13), 0 1.5px 0 rgba(230,184,0,0.07);
  transform: translateY(-2px) scale(1.012);
}

/* --- NEWSLETTER / FORMS --- */
.newsletter {
  background: #FFD95D;
  border-radius: 22px;
  box-shadow: 0 2px 24px rgba(230,184,0,0.10);
  margin-bottom: 48px;
  padding: 36px 0;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}
.newsletter input[type="text"],
.newsletter input[type="email"] {
  border: 1px solid #FFDE69;
  border-radius: 15px;
  padding: 9px 16px;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(230,184,0,0.06);
  margin-right: 0;
  margin-bottom: 0;
}
.newsletter button[type="submit"] {
  background: #3B5249;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 17px;
  padding: 10px 23px;
  font-size: 1.07rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 10px rgba(59,82,73,0.06);
}
.newsletter button[type="submit"]:hover, .newsletter button[type="submit"]:focus {
  background: #597468;
}

form label {
  color: #3B5249;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-form form {
  background: #FFF7EB;
  border-radius: 23px;
  box-shadow: 0 1px 14px rgba(59,82,73,0.08);
  padding: 22px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form legend {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #3B5249;
  font-size: 1.18rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.contact-form label {
  margin-top: 2px;
}
.contact-form input, .contact-form textarea {
  border-radius: 14px;
  border: 1px solid #FFE7B5;
  padding: 9px 15px;
  font-size: 1.02rem;
  background: #fff;
  resize: vertical;
}
.contact-form textarea {
  min-height: 110px;
}
.contact-form button[type="submit"] {
  background: #E6B800;
  color: #3B5249;
  border: none;
  border-radius: 17px;
  padding: 11px 0px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.18s;
}
.contact-form button[type="submit"]:hover, .contact-form button[type="submit"]:focus {
  background: #FFD95D;
}

/* --- LEGAL/TEXT SECTIONS --- */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(59,82,73,0.04);
  margin-bottom: 40px;
  padding: 36px 18px;
}
.text-section {
  margin-bottom: 20px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 18px;
}
.text-section li {
  margin-bottom: 6px;
  font-size: 1rem;
}

/* --- FOOTER --- */
footer {
  background: #3B5249;
  color: #FFF7EB;
  padding: 44px 0 28px 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -2px 28px rgba(59,82,73,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #FFF7EB;
}
.footer-brand span {
  font-size: 1.09rem;
  font-weight: 600;
  color: #FFD95D;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 2px;
}
.footer-nav a {
  color: #FFF7EB;
  font-size: 1rem;
  opacity: 0.92;
  padding: 9px 14px;
  border-radius: 18px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD95D;
  color: #3B5249;
}
.footer-contact, .footer-legal {
  font-size: 0.97rem;
  color: #FFE7B5;
}
.footer-legal {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal a {
  color: #FFD95D;
  opacity: 1;
  font-size: 0.97rem;
  margin-right: 5px;
  border-bottom: 1px dotted #FFD95D;
  transition: color 0.15s;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #E6B800;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
  align-items: center;
}
.footer-social img {
  background: #FFD95D;
  border-radius: 12px;
  width: 32px;
  height: 32px;
  padding: 4px;
  transition: background 0.17s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(230,184,0,0.06);
  cursor: pointer;
}
.footer-social img:hover {
  background: #E6B800;
  box-shadow: 0 4px 16px rgba(230,184,0,0.11);
}

/* --- THANK-YOU SECTION --- */
.hero.thank-you {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 23px;
}

/* ------------- COOKIE CONSENT BANNER & MODAL ------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF7EB;
  box-shadow: 0 -4px 24px rgba(59,82,73,0.11);
  border-top: 3px solid #E6B800;
  padding: 18px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  animation: cookieSlideIn 0.38s ease 1;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-settings-btn {
  background: #FFD95D;
  color: #3B5249;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1px 5px rgba(230,184,0,0.08);
  transition: background 0.16s;
}
.cookie-banner .cookie-accept {
  background: #E6B800;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #3B5249;
  border: 1px solid #E6B800;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FFD95D;
  color: #3B5249;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #FFD95D;
  color: #3B5249;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FFE7B5;
  color: #3B5249;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(59,82,73,0.24);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.23s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 32px rgba(59,82,73,0.15);
  min-width: 310px;
  max-width: 96vw;
  width: 400px;
  padding: 28px 24px 19px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: cookieModalBounceIn 0.33s cubic-bezier(.22,1.19,.63,.87);
}
@keyframes cookieModalBounceIn {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 19px;
  font-size: 1.44rem;
  color: #3B5249;
  background: none;
  border: none;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD95D;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #3B5249;
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-list .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-list .cookie-category input[type=checkbox] {
  accent-color: #E6B800;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  border: 2px solid #E6B800;
}
.cookie-modal-list .cookie-category label {
  font-size: 1.04rem;
  color: #3B5249;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.cookie-category.essential label {
  color: #a3936b;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal-actions .cookie-accept,
.cookie-modal-actions .cookie-reject {
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(230,184,0,0.07);
}
.cookie-modal-actions .cookie-accept {
  background: #E6B800;
  color: #fff;
}
.cookie-modal-actions .cookie-reject {
  background: #fff;
  color: #3B5249;
  border: 1px solid #E6B800;
}
.cookie-modal-actions .cookie-accept:hover, .cookie-modal-actions .cookie-accept:focus {
  background: #FFD95D;
  color: #3B5249;
}
.cookie-modal-actions .cookie-reject:hover, .cookie-modal-actions .cookie-reject:focus {
  background: #FFE7B5;
  color: #3B5249;
}

/* --- UTILITIES & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE DESIGN / MOBILE-FIRST */
@media (max-width: 1120px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 850px) {
  .hero, .features, .services-overview, .newsletter, .section, .services, .legal {
    padding-left: 0;
    padding-right: 0;
    border-radius: 16px;
  }
}
@media (max-width: 690px) {
  .section {
    margin-bottom: 38px;
    padding: 22px 3vw;
  }
  .features, .newsletter, .services-overview, .services {
    padding: 24px 2vw;
    margin-bottom: 32px;
    border-radius: 13px;
  }
  .features-grid, .services-list, .fast-recipe-list, .course-grid, .team-grid, .season-highlights, .tradition-list, .recipe-card-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 19px 14px 14px 14px;
    border-radius: 14px;
    font-size: 1rem;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-nav {
    gap: 8px;
  }
  .footer-social {
    gap: 8px;
  }
  .cookie-modal {
    padding: 14px 7vw 11px 7vw;
    border-radius: 13px;
    min-width: 0;
    width: 90vw;
    max-width: 96vw;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 15px;
  }
  .hero {
    padding: 26px 0 18px 0;
    border-radius: 0 0 16px 16px;
    margin-bottom: 18px;
  }
  .newsletter, .section, .services, .services-overview {
    padding: 13px 2vw;
    border-radius: 10px;
  }
  .features-grid li, .team-grid li, .services-list li, .recipe-card-list li, .fast-recipe-list li, .tradition-list li, .season-highlights li, .course-grid li {
    padding: 16px 8px 14px 8px;
    border-radius: 10px;
    font-size: 0.97rem;
  }
}

/* --- ANIMATIONS --- */
.cta-button, .services-list .cta-button, .features-grid li, .recipe-card-list li, .fast-recipe-list li, .footer-social img, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.23s, box-shadow 0.19s, transform 0.18s;
}

/* --- MISC & OVERRIDES --- */
::-webkit-input-placeholder { color: #BFA258; }
::-moz-placeholder { color: #BFA258; }
:-ms-input-placeholder { color: #BFA258; }
::placeholder { color: #BFA258; }

/* Accessible focus ring */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #E6B800;
  outline-offset: 1px;
}

/* Hide cookie banner/modal by default */
.cookie-banner[hidden] { display: none !important; }
.cookie-modal-overlay[hidden] { display: none !important; }