/* --- 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, textarea, input, button,
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;
  min-height: 100vh;
  background: #1b2330;
  color: #f6f6f9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* --- BRAND COLORS --- */
:root {
  --primary: #264653;
  --secondary: #F4A261;
  --accent: #E9C46A;
  --bg-dark: #181F29;
  --bg-light: #242a38;
  --text-main: #f6f6f9;
  --text-dark: #1a2535;
  --card-bg: #222B3A;
  --card-border: #314158;
  --neon-blue: #38BDF8;
  --neon-pink: #EC4899;
  --neon-green: #22D3EE;
  --gray-light: #e5e9f0;
  --gray-medium: #bfcad4;
  --shadow: 0 4px 32px 0 rgba(36,68,110,0.18);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.8rem;
  color: var(--neon-blue);
  text-shadow: 0 0 12px var(--neon-blue),0 4px 32px rgba(43,197,254,0.08);
}
h2 {
  font-size: 2rem;
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--neon-green),0 2px 10px rgba(34,211,238,0.08);
}
h3 {
  font-size: 1.4rem;
  color: var(--accent);
}
h4 {
  font-size: 1.125rem;
  color: var(--secondary);
}
p, li, label, span, input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
}
p, li {
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--accent);
}

/* --- UTILITIES & CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .service-card:hover, .workshop-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 24px 2px var(--neon-blue), var(--shadow);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--gray-light);
  color: var(--text-dark);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
  box-shadow: 0 2px 16px 0 rgba(36,68,110,0.08);
  border: 1px solid var(--accent);
  width: 100%;
  max-width: 460px;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(90deg, #181F29 60%, var(--primary) 100%);
  box-shadow: 0 2px 14px -8px rgba(28,38,58,0.18);
  position: sticky;
  top: 0;
  z-index: 15;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 18px 20px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--gray-light);
  padding: 4px 6px;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon-pink);
  background: rgba(233,196,106,0.10);
}
.cta.primary {
  background: var(--neon-blue);
  color: #152339;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  border-radius: 16px;
  box-shadow: 0 4px 20px -6px var(--neon-blue);
  padding: 13px 32px;
  font-size: 1.1rem;
  margin-left: 28px;
  border: 2px solid transparent;
  transition: background 0.16s, box-shadow 0.13s, border 0.2s, color 0.15s;
  position: relative;
  z-index: 2;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--neon-pink);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 28px 4px var(--neon-pink);
}
.cta.secondary {
  background: var(--secondary);
  color: #19181b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 16px;
  padding: 11px 28px;
  font-size: 1rem;
  margin-left: 12px;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.13s, border 0.15s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--neon-green);
  color: #13202d;
  border: 2px solid var(--neon-green);
}
.cta.tertiary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 10px 22px;
  font-size: 1rem;
  transition: background 0.2s, color 0.13s, border 0.15s;
}
.cta.tertiary:hover, .cta.tertiary:focus {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--accent);
  font-size: 2rem;
  border-radius: 10px;
  padding: 8px 12px;
  transition: background 0.13s, color 0.13s;
  margin-left: 18px;
  z-index: 12;
}
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--primary);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 94vw;
  max-width: 340px;
  background: var(--bg-light);
  box-shadow: -6px 0 48px 0 rgba(40,218,255,0.18);
  z-index: 2000;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--neon-pink);
  color: #fff;
  border-radius: 10px;
  font-size: 1.6rem;
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 20;
  padding: 3px 11px;
  border: none;
  transition: background 0.11s, color 0.11s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
  width: 100%;
  padding-left: 28px;
}
.mobile-nav a {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 500;
  line-height: 1.3;
  padding: 7px 0;
  border-left: 3px solid transparent;
  transition: color 0.16s, border 0.15s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-blue);
  border-left: 3px solid var(--neon-blue);
  background: rgba(0,238,255,0.08);
}

/* --- HERO & GENERAL SECTION STYLES --- */
section {
  padding: 40px 0;
  margin-bottom: 60px;
  background: none;
}
section:nth-child(even):not(footer):not(.cookie-banner){
  background: var(--bg-light);
  border-radius: 26px;
  box-shadow: 0 6px 36px 0 rgba(34,211,238,0.06);
}
section .container {
  padding: 0 10px;
}

/* --- FEATURE & USP LISTS --- */
.content-wrapper ul,
.features-list,
.feature-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 8px;
}
.content-wrapper ul li,
.features-list li,
.feature-row > div {
  flex: 1 1 230px;
  min-width: 203px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(38,70,83,0.09);
}
.content-wrapper ul li:hover, .feature-row > div:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px 2px var(--neon-blue);
}
.content-wrapper ul img, .feature-row img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}

/* --- RECIPE HIGHLIGHTS, LISTS --- */
.recipe-highlights, .recipe-list, .service-list, .workshop-list, .faq {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.recipe-highlights > div, .recipe-preview-card, .service-card, .workshop-card, .faq > div {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(38,70,83,0.11);
  padding: 20px 16px;
  flex: 1 1 265px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: border 0.14s, box-shadow 0.14s;
  position: relative;
}
.recipe-preview-card h3, .service-card h3, .workshop-card h3 {
  margin-bottom: 10px;
  color: var(--neon-blue);
  font-size: 1.2rem;
}
.recipe-preview-card span, .service-price, .workshop-card span {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.97rem;
}
.recipe-preview-card p {
  margin-top: 8px;
  color: var(--gray-light);
}
.service-card img, .feature-row img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.service-price {
  display: block;
  margin: 12px 0 8px 0;
  color: var(--secondary);
  font-weight: 600;
}

/* --- FAQ Styles --- */
.faq > div {
  background: var(--bg-dark);
  border: 1px solid var(--neon-green);
}
.faq h4 {
  font-size: 1.06rem;
  color: var(--neon-green);
  margin-bottom: 7px;
}
.faq p {
  color: var(--gray-light);
}

/* --- FORMS & FILTERS (Rezepte) --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-bottom: 18px;
  align-items: flex-end;
}
.filters > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 148px;
}
.filters label {
  font-size: 0.96rem;
  color: var(--accent);
  margin-bottom: 2px;
}
.filters input, .filters select {
  background: var(--card-bg);
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
  color: var(--text-main);
  padding: 7px 14px;
  font-size: 1rem;
  transition: border 0.15s, box-shadow 0.14s;
}
.filters input:focus, .filters select:focus {
  border: 1.5px solid var(--neon-blue);
  box-shadow: 0 0 0 2px var(--neon-blue, #38BDF8);
}

/* --- NEWSLETTER SIGNUP (footer, no form) --- */
.newsletter-signup {
  margin-top: 26px;
  background: var(--card-bg);
  padding: 22px 14px 14px 14px;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(39,90,145,0.06);
  max-width: 340px;
}
.newsletter-signup h4 {
  font-size: 1.18rem;
  color: var(--neon-pink);
  margin-bottom: 7px;
}
.newsletter-signup p {
  font-size: 0.99rem;
  margin-bottom: 0;
}

/* --- INFO ROW & CTA ROW (kontakt.html) --- */
.info-row, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.cta-row .cta.primary {
  margin-left: 0;
}

/* --- FOOTER --- */
footer {
  position: relative;
  background: linear-gradient(90deg, var(--primary) 60%, var(--bg-dark) 100%);
  color: var(--gray-light);
  margin-top: 40px;
  padding: 36px 0 18px 0;
}
footer .container {
  padding: 0 14px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 46px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .content-wrapper > * {
  flex: 1 1 190px;
  min-width: 120px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1.04rem;
  font-weight: 500;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--neon-blue);
}
.contact-info span, .contact-info a {
  color: var(--gray-light);
  font-size: 0.97rem;
}
.contact-info a:hover {
  color: var(--neon-blue);
}

/* --- LISTS/ TABLES/ OL --- */
ol li, ul li {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 4px;
}
ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 9px;
  margin-left: 20px;
}

/* --- Miscellaneous --- */
hr {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 24px 0;
}

/* --- SPACING & FLEXBOX MANDATORY CLASSES --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- ANIMATIONS --- */
.cta, .cta.primary, .cta.secondary, .cta.tertiary, .mobile-menu, .mobile-menu-toggle, .service-card, .workshop-card {
  transition: all 0.17s cubic-bezier(.65,.05,.36,1);
}
.card, .recipe-preview-card, .service-card, .workshop-card, .feature-row > div {
  transition: box-shadow 0.19s, border-color 0.17s, transform 0.13s;
}
.card:hover, .recipe-preview-card:hover, .service-card:hover, .workshop-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 0 20px 2px var(--neon-blue), var(--shadow);
  border-color: var(--neon-blue);
}

/* --- INPUTS --- */
input, select, textarea {
  background: var(--card-bg);
  color: var(--text-main);
  border-radius: 8px;
  border: 1px solid var(--gray-medium);
  padding: 10px 14px;
  margin-bottom: 8px;
  transition: border-color 0.13s, box-shadow 0.12s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 2px var(--neon-blue);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  color: var(--text-main);
  box-shadow: 0 -2px 28px 0 rgba(25,255,254,0.16);
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  z-index: 41000;
  font-size: 1rem;
  animation: cookieBannerIn 0.6s cubic-bezier(.57,.02,.52,1.47);
}
@keyframes cookieBannerIn {
  from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 8px 19px;
  border-radius: 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.13s, color 0.14s, border 0.17s;
  margin-right: 2px;
  box-shadow: 0 0 12px 0 rgba(36, 230, 238, 0.05);
}
.cookie-banner .accept {
  background: var(--neon-green);
  color: #13221e;
}
.cookie-banner .accept:hover {
  background: var(--secondary);
  color: #152339;
  border: 2px solid var(--secondary);
}
.cookie-banner .reject {
  background: var(--neon-pink);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--neon-pink);
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner .settings:hover {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 42000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,31,41,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: var(--card-bg);
  color: var(--text-main);
  border-radius: 22px;
  max-width: 420px;
  width: 96vw;
  padding: 32px 26px;
  box-shadow: 0 20px 120px 0 var(--neon-green),0 2px 28px 0 rgba(31,218,234,0.13);
  position: relative;
  animation: cookieModalIn 0.44s cubic-bezier(.57,.02,.52,1.47);
}
@keyframes cookieModalIn {
  from { transform: translateY(36px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: var(--neon-pink);
  color: #fff;
  border-radius: 9px;
  padding: 5px 14px;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.11s, color 0.11s;
}
.cookie-modal .modal-close:hover {
  background: var(--secondary);
  color: #18314f;
}
.cookie-modal h3 {
  margin-bottom: 20px;
  color: var(--neon-blue);
  font-size: 1.3rem;
  text-align: center;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--gray-medium);
}
.cookie-modal .cookie-switch {
  margin-top: 5px;
}
.cookie-modal .cookie-cat-name {
  font-size: 1.06rem;
  color: var(--accent);
  font-weight: 600;
}
.cookie-modal .cookie-cat-desc {
  font-size: 0.97rem;
  color: var(--gray-light);
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 22px;
  background: var(--gray-medium);
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
  outline: none;
  margin-left: 13px;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--neon-green);
}
.cookie-modal .cookie-toggle .toggle-handle {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .toggle-handle {
  transform: translateX(14px);
}
.cookie-modal .category-essential {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 19px;
  justify-content: center;
}
.cookie-modal .cookie-btn {
  background: var(--neon-blue);
  color: #fff;
  border-radius: 16px;
  font-size: 1.07rem;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0 2px;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal .cookie-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* --- RESPONSIVE QUERIES: MOBILE FIRST --- */
@media (max-width: 1100px) {
  .footer-nav, .contact-info, .newsletter-signup {
    min-width: 175px;
  }
  .footer .container, footer .content-wrapper {
    gap: 18px 22px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }
  .content-wrapper ul, .features-list, .feature-row {
    gap: 18px;
  }
  .footer-nav, .contact-info, .newsletter-signup {
    min-width: 120px;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    gap: 13px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.2rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    margin-left: 7px;
    padding: 12px 17px;
    font-size: 1rem;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .feature-row { flex-direction: column; gap: 14px; }
  .content-wrapper ul { flex-direction: column; gap: 12px; }
  .recipe-highlights, .recipe-list, .service-list, .workshop-list, .faq {
    flex-direction: column;
    gap: 13px;
  }
  .info-row, .cta-row, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid { align-items: center; justify-content: flex-start; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .newsletter-signup {
    margin-top: 14px;
    max-width: 99vw;
  }
  .card, .recipe-preview-card, .service-card, .workshop-card, .feature-row > div {
    min-width: unset;
    width: 100%;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 34px;
  }
  footer { padding: 22px 0 11px 0; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.18rem; }
  h2, h3 { font-size: 1rem; }
  .container { padding: 0 4px; }
  .main-nav, .footer-nav {
    font-size: 0.98rem;
  }
  .newsletter-signup { padding: 14px 6px 7px 6px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.93rem;
    padding: 11px 7px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
    margin-top: 5px;
  }
  .cookie-modal {
    padding: 17px 4vw;
    max-width: 98vw;
  }
}

/* --- Z-INDEX LAYERING --- */
header, .cookie-banner, .cookie-modal-overlay { z-index: 500; }
.mobile-menu { z-index: 2000; }
/* --- END --- */