/* ========== BlitzGenuss Geometric Structured CSS ========== */
/* --- 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F7F8FA;
  color: #243B55;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.17s cubic-bezier(0.4,0,0.2,1);
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: #243B55;
  background: #fff;
  border: 1.5px solid #243B55;
  border-radius: 10px;
  padding: 10px 14px;
  box-sizing: border-box;
  margin: 0 8px 0 0;
  transition: border-color 0.18s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #EE9844;
}

/* --- VARIABLES (with fallbacks for old browsers) --- */
:root {
  --primary: #243B55;
  --secondary: #EE9844;
  --accent: #FFFFFF;
  --surface: #F7F8FA;
  --neutral: #E6E9ED;
  --shadow: 0 2px 12px rgba(36,59,85,0.08);
  --border-radius: 18px;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #243B55;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width:520px) {
  h1 { font-size: 1.7rem; }
}
h2 {
  font-size: 1.675rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, .subheadline {
  font-size: 1.06rem;
  margin-bottom: 16px;
}
.subheadline {
  color: #243B55;
  font-weight: 400;
  font-size: 1.16rem;
}
blockquote {
  border-left: 6px solid #EE9844;
  padding: 12px 18px;
  background: #FFF7EE;
  color: #243B55;
  border-radius: 0 30px 30px 0;
  margin: 24px 0 16px 0;
  font-style: italic;
  font-size: 1.13rem;
}
strong,b { font-weight: 600; }

/* --- STRUCTURED CONTAINER SYSTEM --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}


/* --- HEADER & NAVIGATION --- */
header {
  background: var(--accent, #fff);
  box-shadow: 0 1px 0 rgba(36,59,85,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 0; padding-bottom: 0;
  flex-wrap: wrap;
  gap: 18px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary, #243B55);
  padding: 4px 0 2px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary, #EE9844);
  border-bottom: 2px solid var(--secondary, #EE9844);
}

.cta.primary {
  background: var(--secondary, #EE9844);
  color: var(--accent, #FFF);
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 28px 12px 28px;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px rgba(36,59,85,0.08);
  transition: background 0.14s, color 0.12s, box-shadow 0.13s;
  border: none;
  margin-left: 22px;
  letter-spacing: 0.03em;
}
.cta {
  background: var(--primary, #243B55);
  color: var(--accent, #fff);
  border-radius: 16px;
  padding: 10px 22px 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, color 0.13s;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
  box-shadow: 0 1px 8px rgba(36,59,85,0.06);
  border: 2px solid transparent;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary, #243B55);
  color: var(--accent, #fff);
  box-shadow: 0 4px 24px rgba(238,152,68,0.15);
}
.cta:hover, .cta:focus {
  background: var(--secondary, #EE9844);
  color: var(--accent, #243B55);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary, #EE9844);
  color: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 1600;
  transition: background 0.17s, color 0.13s;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary, #243B55);
  color: var(--accent, #fff);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .logo img {
    height: 40px;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,59,85,0.97);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.55,0,0.4,1);
  pointer-events: none;
  opacity: 0.985;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 18px 0;
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #EE9844;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 26px;
  align-items: flex-start;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 8px 8px;
  transition: background 0.13s, color 0.13s;
  outline: none;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary, #EE9844);
  color: #243B55;
}

/* --- FOOTER --- */
footer {
  background: #243B55;
  color: #fff;
  padding: 48px 0 0 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  padding: 5px 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EE9844;
  border-bottom: 2px solid #EE9844;
}
.footer-contact {
  margin-bottom: 18px;
  color: #E6E9ED;
  font-size: 1rem;
}
.footer-contact ul {
  margin-top: 7px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer strong {
  color: #fff;
}

@media (max-width: 700px) {
  footer {
    padding-top: 28px;
  }
  .footer-logo img { height: 36px; }
  .footer-contact { font-size: 0.96rem; }
  .container { padding-left: 3vw; padding-right: 3vw; }
}

/* --- SECTION SYSTEM --- */
main {
  display: flex;
  flex-direction: column;
  min-height: 30vh;
  gap: 0;
}
section {
  background: #fff;
  border-radius: var(--border-radius, 18px);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow, 0 2px 12px rgba(36,59,85,0.08));
  width: 100%;
  position: relative;
}
section.hero {
  background: linear-gradient(128deg, #fff 60%, #FFF7EE 100%);
  box-shadow: none;
  border-radius: 0 0 48px 0;
  margin-bottom: 60px;
  min-height: 210px;
  display: flex;
  align-items: center;
}
section.testimonials {
  background: #FFF7EE;
  box-shadow: 0 3px 22px rgba(36,59,85,0.05);
}
section.contact-brief,
section.contact,
section.map {
  background: #ffffff;
}
section.legal {
  background: #F7F8FA;
  border-radius: var(--border-radius, 18px);
  box-shadow: 0 1px 8px rgba(36,59,85,0.06);
}
section.confirmation {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 24px rgba(36,59,85,0.07);
  text-align: center;
}

@media (max-width: 768px) {
  section, section.hero {
    padding: 28px 4vw;
    border-radius: 0;
    margin-bottom: 38px;
  }
  .content-wrapper { gap: 14px; }
  main { gap: 0; }
}

/* --- CARD CONTAINERS & FLEX GRIDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow, 0 2px 12px rgba(36,59,85,0.08));
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(36,59,85,0.17);
}

.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow, 0 2px 12px rgba(36,59,85,0.09));
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 560px;
  flex: 1 1 210px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(36,59,85,0.18);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- INDEX: Features Section --- */
.features {
  background: #fff;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid li {
  background: #FFF7EE;
  border-radius: 18px;
  flex: 1 1 min(238px, 48%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px;
  box-shadow: 0 1px 9px rgba(36,59,85,0.08);
  min-width: 195px;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.feature-grid li img {
  height: 38px;
  width: 38px;
}
.feature-grid li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary, #243B55);
  font-size: 1.18rem;
}
.feature-grid li:hover {
  box-shadow: 0 5px 20px 0 rgba(238,152,68,0.09);
  transform: translateY(-1.5px) scale(1.025);
}

/* --- INDEX: Service List --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  width: 100%;
}
.service-list li {
  background: #F7F8FA;
  border-radius: 14px;
  padding: 18px 20px;
  min-width: 210px;
  flex: 1 1 min(247px, 48%);
  box-shadow: 0 1px 8px rgba(36,59,85,0.04);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-list span {
  color: #EE9844;
  font-weight: 700;
  font-size: 1.07rem;
  padding-top: 6px;
}

/* --- INDEX: Recipes Showcase --- */
.recipe-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 13px;
}
.recipe-highlights li {
  background: #FFF7EE;
  border-radius: 16px;
  padding: 18px 18px 14px 18px;
  min-width: 180px;
  flex: 1 1 min(220px, 48%);
  box-shadow: 0 1px 8px rgba(36,59,85,0.05);
  transition: transform 0.12s;
  margin-bottom: 20px;
}
.recipe-highlights li:hover {
  transform: scale(1.02);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.stars-rating {
  font-size: 1.21rem;
  color: #EE9844;
  letter-spacing: 0.09em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-meta {
  color: #243B55;
  font-size: 1.02rem;
  margin-top: 5px;
  font-style: italic;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.quick-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
}
.quick-info img {
  width: 23px;
  height: 23px;
}

/* --- ABOUT: Team + Brand Values --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
}
.team-list li {
  background: #E6E9ED;
  border-radius: 14px;
  padding: 18px 18px;
  min-width: 175px;
  flex: 1 1 min(220px,48%);
  margin-bottom: 18px;
  box-shadow: 0 1.5px 7px rgba(36,59,85,0.04);
}
.brand-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.brand-values-grid li {
  background: #FFF7EE;
  border-radius: 11px;
  box-shadow: 0 1.5px 5px rgba(36,59,85,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 11px 15px 10px 15px;
  min-width: 92px;
}
.brand-values-grid img {
  width: 26px;
  height: 26px;
}
.brand-values-grid span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #243B55;
  font-size: 1rem;
}

/* --- REZEPTE: Controls, Grid Categories, Cards --- */
.recipe-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 8px;
}
.recipe-controls label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.recipe-controls select, .recipe-controls input[type="text"] {
  min-width: 143px;
  border-radius: 10px;
  height: 38px;
  background: #FFF;
  font-size: 1rem;
  border: 1.5px solid #243B55;
  color: #243B55;
}

.recipe-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.recipe-categories-grid li {
  background: #FFF7EE;
  border-radius: 14px;
  padding: 12px 18px;
  min-width: 120px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #243B55;
  cursor: pointer;
  box-shadow: 0 1.5px 7px rgba(36,59,85,0.03);
  transition: background 0.13s, transform 0.12s; 
  margin-bottom: 20px;
}
.recipe-categories-grid li:hover, .recipe-categories-grid li:focus {
  background: #EE9844;
  color: #fff;
  transform: scale(1.04);
}

.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.recipe-cards li {
  background: #F7F8FA;
  border-radius: 11px;
  padding: 17px 16px;
  min-width: 160px;
  flex: 1 1 min(170px, 42%);
  box-shadow: 0 1px 8px rgba(36,59,85,0.03);
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.pagination span {
  background: #243B55;
  color: #fff;
  border-radius: 9px;
  font-weight: 700;
  padding: 5px 12px;
}
.pagination a {
  background: #EE9844;
  color: #243B55;
  padding: 5px 12px;
  border-radius: 9px;
  font-weight: 600;
  transition: background 0.11s, color 0.11s;
}
.pagination a:hover {
  background: #243B55;
  color: #fff;
}

.quick-filter {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.97rem;
}
.quick-filter a {
  color: #EE9844;
  font-weight: 700;
}
.quick-filter a:hover, .quick-filter a:focus {
  text-decoration: underline;
  color: #243B55;
}

/* --- KOCHWORKSHOPS: Workshop Listing --- */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
.workshop-list li {
  background: #FFF7EE;
  border-radius: 13px;
  padding: 18px 18px 10px 18px;
  min-width: 172px;
  flex: 1 1 min(210px, 48%);
  box-shadow: 0 1px 7px rgba(36,59,85,0.07);
  margin-bottom: 20px;
}
.workshop-list span {
  color: #EE9844;
  font-weight: 700;
  font-size: 1.05rem;
}
.workshop-categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.98rem;
  margin-bottom: 9px;
}
.workshop-categories a {
  color: #EE9844;
  font-weight: 700;
  transition: text-decoration 0.13s;
}
.workshop-categories a:hover {
  text-decoration: underline;
  color: #243B55;
}
.workshop-pricing {
  background: #243B55;
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 13px;
  margin-top: 8px;
}
.calendar-teaser {
  background: #FFF7EE;
  color: #243B55;
  border-radius: 9px;
  padding: 9px 14px;
  font-size: 0.97rem;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* --- KOCHWORKSHOPS PROCESS --- */
.workshop-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 6px;
}
.workshop-steps li {
  background: #E6E9ED;
  border-radius: 9px;
  padding: 8px 13px;
  font-size: 1.01rem;
}
.faq-teaser {
  background: #FFF7EE;
  color: #243B55;
  padding: 10px 14px;
  border-radius: 11px;
  margin-top: 9px;
  font-size: 0.96rem;
}

/* --- DIENSTLEISTUNGEN: Services, Pricing, FAQ --- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.service-cards li {
  background: #FFF7EE;
  border-radius: 12px;
  padding: 15px 16px;
  flex: 1 1 min(180px, 50%);
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(36,59,85,0.04);
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.4em;
  margin-bottom: 18px;
  margin-top: 10px;
}
.pricing-table thead th {
  background: #243B55;
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 14px;
  font-size: 1.03rem;
  border-radius: 10px 10px 0 0;
}
.pricing-table tbody td {
  background: #E6E9ED;
  padding: 8px 14px;
  font-size: 1.01rem;
  border-radius: 0 0 10px 10px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-accordion li {
  background: #FFF7EE;
  border-radius: 10px;
  padding: 11px 15px;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(36,59,85,0.04);
}

/* --- CONTACT: Address/Details Block --- */
.address-block, .contact-details {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.address-block img, .contact-details img {
  width: 22px;
  height: 22px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0;
}

/* --- CONFIRMATION / SUCCESS --- */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
}

/* --- LEGAL DOCUMENTS --- */
.legal h1 {
  margin-bottom: 18px;
}
.legal h2 {
  margin-top: 18px;
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 13px 0;
}

/* --- MEDIA QUERY: MOBILE COLUMN LAYOUTS --- */
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .feature-grid, .service-list, .service-cards, .recipe-highlights, .recipe-cards, .workshop-list, .testimonial-slider, .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .quick-info, .recipe-categories-grid {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* --- BUTTONS & INTERACTIONS --- */
button, .cta, .cta.primary {
  transition: background 0.17s, color 0.17s, box-shadow 0.11s;
}
button:focus-visible, a:focus-visible {
  outline: 2px dashed #EE9844;
  outline-offset: 2px;
}

/* --- SHADOWS & GEOMETRIC EFFECTS --- */
.card, .feature-grid li, .service-list li, .recipe-highlights li, .testimonial-card, .service-cards li, .team-list li, .brand-values-grid li, .faq-accordion li {
  box-shadow: var(--shadow, 0 2px 12px rgba(36,59,85,0.08));
}

/* --- GEOMETRIC ICON ACCENTS --- */
.feature-grid li:before, .brand-values-grid li:before {
  content: '';
  display: none;
}

/* --- COLORED ACCENTS (e.g., active/selected states) --- */
.feature-grid li.active, .recipe-categories-grid li.active {
  background: #EE9844;
  color: #fff;
}

/* --- TRANSITIONS --- */
section, .card, .testimonial-card, .feature-grid li, .recipe-highlights li, .service-cards li, .team-list li, .brand-values-grid li {
  transition: box-shadow 0.18s, transform 0.13s, background 0.12s, color 0.12s;
}

/* --- Z-INDEX LAYERS FOR MENU/BANNERS --- */
header { z-index: 1200; position: relative; }
footer { z-index: 600; position: relative; }
section { z-index: 10; position: relative; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #243B55;
  color: #fff;
  box-shadow: 0 -2px 22px rgba(36,59,85,0.18);
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 3000;
  transition: transform 0.33s cubic-bezier(0.72,0,0.12,1), opacity 0.14s;
  transform: translateY(0);
  border-radius: 18px 18px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0.01;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookie-banner button {
  border-radius: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 20px;
  background: #fff;
  color: #243B55;
  border: none;
  margin-right: 10px;
  transition: background 0.14s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 7px rgba(36,59,85,0.08);
}
.cookie-banner .accept {
  background: #EE9844;
  color: #243B55;
}
.cookie-banner .accept:hover {
  background: #243B55;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #F94F4F;
  color: #fff;
}
.cookie-banner .settings {
  color: #243B55;
  background: #fff;
}
.cookie-banner .settings:hover {
  background: #E6E9ED;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translate(-50%,100%);
  width: 95vw;
  max-width: 390px;
  background: #fff;
  color: #243B55;
  border-radius: 22px 22px 0 0;
  z-index: 3500;
  box-shadow: 0 -4px 40px rgba(36,59,85,0.19);
  opacity: 0;
  pointer-events: none;
  padding: 34px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.36s cubic-bezier(0.8,0,0.18,1), opacity 0.13s;
}
.cookie-modal.open {
  transform: translate(-50%,0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 1rem;
}
.cookie-modal .category-label {
  flex: 1;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 22px;
  background: #E6E9ED;
  border-radius: 13px;
  transition: background 0.16s;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 10px;
  transition: left 0.17s cubic-bezier(0.8,0,0.2,1), background 0.12s;
  box-shadow: 0 1.5px 7px rgba(36,59,85,0.13);
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  left: 18px;
  background: #EE9844;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.cookie-modal .cookie-modal-close {
  margin-left: auto;
  background: none;
  color: #243B55;
  font-size: 1.2rem;
  padding: 0 5px; border: none;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #EE9844;
}

/* --- HIGH CONTRAST FOR TESTIMONIALS --- */
.testimonial-card, section.testimonials, .testimonial-slider {
  color: #243B55 !important;
  background: #FFF7EE !important;
}
.testimonial-card {
  background: #fff;
  color: #243B55;
}

/* --- RESPONSIVENESS, MOBILE FRIENDLY --- */
@media (max-width: 600px) {
  .footer-nav, .feature-grid, .service-list, .service-cards, .recipe-highlights, .team-list, .quick-info, .recipe-categories-grid, .workshop-list, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .container { padding: 0 7px; }
  section, section.hero { padding: 18px 4vw; margin-bottom: 22px; }
  .footer-logo img { height: 28px; }
}

/* --- PRINT OPTIMIZATION --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}

/* --- SUPPORT --- */
@media (hover: hover) {
  .cta:hover, .cta.primary:hover, .main-nav a:hover, .footer-nav a:hover, .cookie-banner button:hover { filter: brightness(0.98) contrast(1.14); }
}
