/* RESET & BASE STYLES */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F2EC;
  color: #314C2B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #314C2B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A6D49F;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #314C2B;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 0 #E5DCBB;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #E5DCBB;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
}
b, strong {
  font-weight: 700;
}

/* CONTAINER & WRAPPER */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* VINTAGE RETRO COLOR PALETTE (expanding the brand palette) */
:root {
  --primary: #314C2B;
  --secondary: #A6D49F;
  --accent: #F5F2EC;
  --retro-yellow: #F7D488;
  --retro-red: #E96B47;
  --retro-brown: #7F6546;
  --retro-blue: #6B8E8B;
  --retro-cream: #FAF9F6;
  --shadow: rgba(60,40,13,0.12);
  --border-radius: 16px;
  --card-radius: 18px;
}

/* --------------------------------------
   HEADER & NAVIGATION
----------------------------------------*/
header {
  background: var(--primary);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 8px 0 8px 0;
  justify-content: flex-start;
  background: var(--primary);
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  color: #FFF;
  font-size: 1.05rem;
  padding: 7px 15px;
  border-radius: 99px;
  transition: background 0.16s, color 0.16s;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
}
.main-nav a.cta.primary {
  background: var(--retro-yellow);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 16px var(--shadow);
  margin-left: auto;
  border-radius: 30px;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: var(--retro-red);
  color: #FFF;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.main-nav img {
  height: 46px;
  width: auto;
  margin-right: 12px;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-yellow);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 6px 18px;
  margin: 12px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--retro-red);
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu 0.35s ease-out;
}
@keyframes slideInMenu {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--retro-yellow);
  font-size: 2.3rem;
  padding: 5px 25px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--retro-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  padding: 16px 24px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px 10px 15px 24px;
  border-radius: 12px;
  background: none;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}

/* Show burger & mobile menu on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --------------------------------------
   HERO SECTIONS
----------------------------------------*/
.hero {
  background: repeating-linear-gradient(
    -45deg, var(--retro-cream) 0 24px, #f8e6b0 24px 48px
  );
  border-bottom: 7px solid var(--retro-yellow);
  box-shadow: 0 6px 32px var(--shadow);
}
.hero .container {
  padding-top: 54px;
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: var(--primary);
  text-align: center;
  text-shadow: 0 3px 0 #e9dcb7, 0 0 28px #fff1bf60;
}
.hero p {
  max-width: 540px;
  color: var(--retro-brown);
  font-size: 1.08rem;
  text-align: center;
  margin: 0 auto 22px auto;
}
.hero .cta {
  margin: 0 auto;
}

/* --------------------------------------
  SECTIONS, CARDS, FLEXBOX LAYOUTS
----------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.card-container, .values-grid, .feature-grid, .recipe-preview-grid, .blog-preview-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  margin-bottom: 20px;
}
.card, .feature, .recipe-card, .blog-card, .team-member, .value {
  position: relative;
  border-radius: var(--card-radius);
  background: #FFFEEE;
  box-shadow: 0 2px 18px var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.18s, background 0.18s;
}
.card:hover, .feature:hover, .recipe-card:hover,
.blog-card:hover, .team-member:hover, .value:hover {
  box-shadow: 0 6px 36px var(--shadow);
  transform: translateY(-5px) scale(1.03);
  background: #fff9ec;
}

.feature-grid, .values-grid, .team-grid, .recipe-preview-grid, .blog-preview-grid {
  gap: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 328px;
  border-left: 9px solid var(--retro-yellow);
  background: #FFFBF4;
}
.feature img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 2px #e1d48a60);
}
.value img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.team-member {
  background: #FFFDEE;
  min-width: 220px;
  max-width: 340px;
  border-bottom: 6px double var(--retro-yellow);
}
.value {
  min-width: 210px;
  max-width: 328px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CONTENT GRID (CATEGORIES, PREVIEWS) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 8px;
  padding-bottom: 0;
}
.categories-list li {
  font-family: 'Playfair Display', serif;
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 10px 30px 30px 10px;
  padding: 8px 18px 8px 12px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 7px var(--shadow);
  display: flex;
  align-items: center;
  gap: 7px;
}
.categories-list li img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
.filter-options {
  margin: 8px 0 0 0;
  font-size: 1rem;
  color: var(--primary);
}
.filter-options select {
  margin-left: 8px;
  padding: 4px 20px 4px 8px;
  border-radius: 7px;
  border: 1.5px solid var(--retro-yellow);
  background: #fffef7;
  font-family: inherit;
}

/* DAILY HIGHLIGHT, QUICK-TIP */
.daily-recipe-highlight {
  background: var(--retro-yellow);
  padding: 32px 18px;
  border-radius: 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 24px var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.daily-recipe-highlight h3 {
  color: var(--retro-red);
}
.daily-recipe-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 14px 0;
  color: var(--retro-brown);
}
.daily-recipe-highlight li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
}
.daily-recipe-highlight img {
  width: 18px;
  filter: grayscale(20%);
}
.quick-tip {
  background: var(--retro-cream);
  padding: 13px 18px;
  border-radius: 11px;
  box-shadow: 0 1px 6px var(--shadow);
  margin-top: 8px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--retro-brown);
  display: flex;
  align-items: center;
  gap: 12px;
}
.quick-tip img {
  width: 20px;
}

.recipe-preview-grid, .blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-card, .blog-card {
  min-width: 210px;
  background: #FFFDEE;
  color: var(--primary);
  border-left: 7px solid var(--retro-red);
  border-radius: 13px;
  padding: 20px 18px 15px 18px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.recipe-card:hover, .blog-card:hover {
  box-shadow: 0 6px 28px var(--shadow);
  background: #FFF6D7;
  transform: translateY(-2.5px) scale(1.025);
}

/* --------------------------------------
  TESTIMONIALS & SPECIAL CARD STYLES
----------------------------------------*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 18px 26px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 26px var(--shadow);
  font-size: 1.07rem;
  max-width: 360px;
  border-bottom: 7px double var(--retro-yellow);
  border-top: 2px solid var(--accent);
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card p {
  margin-bottom: 0px;
  color: #463526;
  font-family: 'Playfair Display', serif;
  background: none;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.98rem;
  color: var(--retro-brown);
  font-weight: 500;
}

/* ENSURE HIGH CONTRAST (accessibility) */
.testimonial-card, .testimonial-card p, .testimonial-meta {
  background: #FFF;
  color: #1C1B19;
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  background: var(--retro-red);
  color: #FFF;
  padding: 13px 36px;
  border-radius: 99px;
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  font-weight: 600;
  box-shadow: 0 3px 16px var(--shadow);
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  margin: 8px 0 0 0;
  transition: background 0.20s, color 0.18s, transform 0.13s;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  transform: scale(1.04);
}
.cta.primary {
  background: var(--retro-yellow);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 22px var(--shadow);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--retro-red);
  color: #fff;
}

/* --------------------------------------
  FOOTER
----------------------------------------*/
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 60px;
  font-size: 0.99rem;
  font-family: 'Roboto', sans-serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding-bottom: 12px;
}
.footer-nav a {
  color: var(--retro-yellow);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  transition: color 0.15s;
  text-shadow: 0 1px 0 #47360060;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 10px 30px 10px;
}
.footer-contact img {
  width: 66px;
  height: auto;
  margin-right: 13px;
}
.footer-contact address {
  color: #fff;
  font-size: 1.01rem;
  font-style: normal;
  line-height: 1.6;
  display: block;
}
.footer-contact a {
  color: var(--retro-yellow);
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact img[alt="Telefon"],
.footer-contact img[alt="E-Mail"] {
  width: 16px;
  height: 16px;
  vertical-align: sub;
  margin-right: 4px;
  margin-left: 8px;
}

/* --------------------------------------
  SPECIAL STYLES (FAQ, TIPS, ETC.)
----------------------------------------*/
.season-calendar {
  background: #FCF3D4;
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px var(--shadow);
}
.season-calendar h3 {
  color: var(--retro-red);
  margin-bottom: 7px;
  font-size: 1.13rem;
}
.season-calendar ul {
  list-style: disc;
  margin-left: 22px;
  color: var(--primary);
  font-weight: 500;
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
  margin-bottom: 16px;
}
.tip-list li {
  background: #FAF4E4;
  border-left: 6px solid var(--retro-blue);
  padding: 11px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.tip-list img {
  width: 22px;
  height: 22px;
}
.faq-section {
  background: #FEEACC;
  padding: 14px 16px;
  border-radius: 14px;
  margin-top: 18px;
}
.faq-section h3 {
  margin-bottom: 7px;
  color: var(--primary);
}
.faq-section ul {
  padding-left: 12px;
  margin-bottom: 0;
}
.faq-section li {
  margin-bottom: 5px;
  color: var(--retro-brown);
  font-size: 0.97rem;
}

.confirmation-message {
  background: #F5F2EC;
  border-left: 6px solid var(--retro-yellow);
  border-radius: 11px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.next-steps-info ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  font-size: 0.97rem;
  color: var(--retro-brown);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.next-steps-info li {
  background: #FFFCEE;
  padding: 7px 18px;
  border-radius: 12px;
}

/* Contact Info block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F9F4E0;
  padding: 19px 28px;
  border-radius: 13px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px var(--shadow);
}
.contact-info address {
  font-size: 1.07rem;
}

/* --------------------------------------
  COOKIES CONSENT BANNER & MODAL
----------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFFDEE;
  box-shadow: 0 -2px 20px var(--shadow);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 18px 18px;
  font-size: 0.97rem;
  border-top: 4px solid var(--retro-yellow);
  gap: 20px;
  animation: cookieSlideIn 0.6s cubic-bezier(.7, .2, .4, 1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 99px;
  padding: 9px 22px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 0;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.15s, color 0.12s, transform 0.11s;
}
.cookie-consent-banner .cookie-accept {
  background: var(--retro-yellow);
  color: #314C2B;
}
.cookie-consent-banner .cookie-accept:hover { background: var(--retro-red); color: #fff; }
.cookie-consent-banner .cookie-reject { background: var(--retro-red); color: #fff; }
.cookie-consent-banner .cookie-reject:hover { background: #314C2B; }
.cookie-consent-banner .cookie-settings { background: #fff; color: var(--primary); border: 2px solid var(--primary);}
.cookie-consent-banner .cookie-settings:hover { background: var(--retro-yellow); color: var(--primary); }

/* Cookie preferences modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3100;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(49,76,43,0.75);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.2s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff9ea;
  width: 96vw;
  max-width: 370px;
  border-radius: 18px;
  box-shadow: 0 8px 48px var(--shadow);
  padding: 34px 28px 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: modalPopIn 0.22s cubic-bezier(.66, .11, .69, .94);
}
@keyframes modalPopIn {
  from { transform: scale(0.91); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--retro-red);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: var(--primary); }

.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: var(--retro-yellow);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-essential {
  font-weight: 600;
  color: var(--retro-red);
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-modal .cookie-btns button {
  padding: 9px 23px;
  font-size: 1.02rem;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
  }
}

/* --------------------------------------
  RESPONSIVE DESIGN
----------------------------------------*/
@media (max-width: 1080px) { .container { max-width: 100%; } }
@media (max-width: 990px) {
  .footer-contact { flex-direction: column; gap: 11px; align-items: flex-start; }
  .values-grid, .feature-grid, .team-grid, .recipe-preview-grid, .blog-preview-grid, .categories-list ul {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .values-grid, .feature-grid, .team-grid, .recipe-preview-grid, .blog-preview-grid { gap: 14px; }
  .hero .container { padding-top: 36px; padding-bottom: 36px; }
  section { padding: 35px 0; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-wrapper { gap: 15px; }
  .feature, .recipe-card, .blog-card, .team-member, .value, .testimonial-card {
    min-width: 90vw;
    max-width: 100vw;
  }
  .main-nav { padding: 3px 0; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.14rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.97rem; }
  .hero .container { padding-top: 23px; padding-bottom: 29px; }
  section { padding: 22px 0; margin-bottom: 34px; }
  .card, .feature, .recipe-card, .blog-card, .team-member, .value, .testimonial-card {
    padding: 15px;
  }
  .quick-tip { padding: 8px 11px; }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 6px 20px 6px;
  }
  .categories-list ul {
    gap: 8px;
    font-size: 0.93rem;
  }
  .cta, .cta.primary {
    padding: 9px 18px;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 20px 6px 15px 10px;
    max-width: 98vw;
  }
}

/* --------------------------------------
  PRINT CLEANUP
----------------------------------------*/
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  body, main, section, .container, .content-wrapper { box-shadow: none !important; background: #fff !important; color: #222 !important; }
}

/* --------------------------------------
  DECORATIVE RETRO ACCENTS
----------------------------------------*/
section {
  position: relative;
}
section:before {
  content: "";
  display: block;
  position: absolute;
  top: -18px; left: 30px;
  width: 90px; height: 9px;
  background: repeating-linear-gradient(90deg, var(--retro-yellow) 0 35px, var(--retro-red) 35px 55px, transparent 55px 90px);
  opacity: 0.18;
  border-radius: 20px;
  z-index: 1;
}
section:nth-of-type(even):before {
  left: auto; right: 30px; transform: scaleX(-1);
}

/* All cards, highlights, testimonials minimum spacing */
.card, .feature, .recipe-card, .blog-card, .testimonial-card,
.team-member, .value, .daily-recipe-highlight, .quick-tip, .confirmation-message, .contact-info {
  margin-bottom: 20px;
}

/* Utility classes */
.text-center { text-align: center; }
