/* 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;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222D35;
  background-color: #F5F7FA;
  line-height: 1.7;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: disc inside;
}

/* BRAND & CORPORATE COLOR PALETTE */
:root {
  --primary: #294B26;
  --primary-darker: #203b1f;
  --secondary: #F7C873;
  --secondary-dark: #dbac55;
  --bg: #F5F7FA;
  --white: #fff;
  --text: #222D35;
  --text-light: #556070;
  --gray-1: #e7ecf2;
  --gray-2: #cfd8e3;
  --gray-3: #b2bac6;
  --blue-1: #2F475F;
  --blue-2: #426C91;
  --shadow: rgba(36,60,70,0.07);
  --danger: #c0392b;
  --success: #27ae60;
}

/* TYPOGRAPHY */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
}
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
  line-height: 1.18;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--blue-1);
  line-height: 1.22;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
  line-height: 1.24;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}
p, .subheadline {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 18px;
}
.subheadline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--blue-2);
  margin-bottom: 22px;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* LAYOUT SECTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: 20px;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
.hero-section {
  background: var(--blue-2);
  color: var(--white);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px var(--shadow);
  margin-bottom: 50px;
}
.hero-section h1,
.hero-section .subheadline {
  color: var(--white);
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* CARDS and FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 230px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(33,54,65,0.10);
}
.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;
}

/* Feature GRID on INDEX */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 210px;
  background: var(--gray-1);
  border-radius: 12px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.18s;
  margin-bottom: 20px;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.feature:hover {
  box-shadow: 0 4px 18px var(--shadow);
  background: var(--white);
}

/* CATEGORY GRID on kategorie.html */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.category-card {
  background: var(--gray-1);
  border-radius: 14px;
  padding: 24px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s, transform 0.12s;
}
.category-card:hover {
  background: var(--secondary);
  box-shadow: 0 4px 18px var(--shadow);
  transform: translateY(-2px) scale(1.02);
}
.category-card h3 { color: var(--primary); }
.category-card a {
  margin-top: 16px;
  font-weight: 600;
  color: var(--blue-2);
  transition: color 0.2s;
}
.category-card a:hover { color: var(--primary); }

/* RECIPE CARDS */
.recipe-cards, .recipe-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.recipe-card, .recipe-excerpt {
  background: var(--gray-1);
  border-radius: 12px;
  flex: 1 1 240px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  transition: box-shadow 0.16s, background 0.2s, transform 0.12s;
}
.recipe-card:hover, .recipe-excerpt:hover {
  box-shadow: 0 4px 18px var(--shadow);
  background: var(--white);
  transform: translateY(-1px) scale(1.015);
}
.recipe-card h3, .recipe-excerpt h3 {
  margin-bottom: 11px;
  color: var(--blue-1);
}
.recipe-card a,
.recipe-excerpt a {
  margin-top: 13px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.recipe-card a:hover,
.recipe-excerpt a:hover {
  color: var(--secondary-dark);
}

/* TEAM */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.team-member {
  flex: 1 1 250px;
  background: var(--gray-1);
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 20px;
}

/* TIPS LIST */
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.tip-card {
  flex: 1 1 210px;
  background: var(--gray-1);
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 20px;
}

/* POPULAR TAGS */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 18px;
}
.popular-tags span {
  background: var(--gray-2);
  color: var(--blue-1);
  border-radius: 24px;
  padding: 6px 15px;
  font-size: 0.97rem;
  font-weight: 500;
}

/* PAGINATION */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.pagination span {
  background: var(--gray-2);
  color: var(--primary);
  border-radius: 6px;
  padding: 7px 13px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s;
}
.pagination span:hover {
  background: var(--secondary);
  color: var(--primary-darker);
}

/* QUICK LINKS */
.quick-links {
  margin-top: 20px;
  color: var(--blue-1);
  font-weight: 600;
  display: flex;
  gap: 13px;
}
.quick-links a {
  text-decoration: underline;
}
.quick-links a:hover { color: var(--primary); }

/* CTA BUTTONS */
.cta.primary {
  box-shadow: 0 3px 12px rgba(41,82,78,0.08);
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1.11rem;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.17s, transform 0.13s;
  border: none;
  letter-spacing: 0.5px;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary-dark);
  color: var(--primary-darker);
  transform: translateY(-2px) scale(1.04);
}

.cta.secondary {
  background: var(--secondary);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1.01rem;
  margin-top: 13px;
  display: inline-block;
  transition: background 0.14s, color 0.12s, transform 0.13s;
  border: none;
  letter-spacing: 0.2px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px) scale(1.02);
}

/* SEARCH AND FILTERS (przepisy) */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.search-bar input {
  padding: 10px 14px;
  border-radius: 7px;
  border: 1px solid var(--gray-3);
  font-size: 1rem;
  width: 230px;
  background: var(--gray-1);
}
.search-bar button {
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  transition: background 0.16s, color 0.13s;
}
.search-bar button:disabled {
  background: var(--gray-2);
  color: var(--gray-3);
  cursor: not-allowed;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-end;
}
.filters label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: var(--blue-1);
  font-weight: 700;
  min-width: 130px;
  gap: 5px;
}
.filters select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-3);
  background: var(--gray-1);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.filters select:disabled {
  color: var(--gray-3);
  background: var(--gray-1);
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray-2);
  border-radius: 16px;
  box-shadow: 0 1px 10px var(--shadow);
  max-width: 350px;
  min-width: 220px;
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--blue-1);
  margin: 0 0 7px 0;
  font-size: 1.04rem;
  line-height: 1.5;
}
.testimonial-card span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  text-align: right;
  width: 100%;
}
.testimonial-card {
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card:hover {
  background: var(--secondary);
  box-shadow: 0 6px 26px var(--shadow);
}

/* FOOTER */
footer {
  background: var(--blue-1);
  color: var(--white);
  margin-top: 50px;
  padding-top: 36px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -8px 32px var(--shadow);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-2);
  padding-bottom: 24px;
  margin-bottom: 18px;
}
.footer-main > * {
  min-width: 200px;
}
.footer-main .brand-logo img {
  width: 110px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p,
.footer-contact a {
  font-size: 0.99rem;
  color: var(--gray-2);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 18px;
  opacity: 0.85;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  width: 28px;
  transition: filter 0.17s, transform 0.12s;
  filter: grayscale(0.5) brightness(0.88);
}
.footer-social a:hover img {
  filter: none;
  transform: scale(1.10) translateY(-2px);
}
.newsletter-signup p {
  font-size: 0.96rem;
  color: var(--gray-2);
  margin-bottom: 8px;
}
.footer-bottom {
  text-align: center;
  margin-top: 14px;
  padding-bottom: 22px;
  font-size: 0.99rem;
  color: var(--gray-3);
}

/* BRAND LOGO */
.brand-logo img {
  height: 54px;
  width: auto;
}

/* HEADER NAV */
header {
  background: var(--white);
  box-shadow: 0 8px 32px var(--shadow);
  border-radius: 0 0 30px 30px;
  padding: 0 0 7px 0;
  position: sticky;
  z-index: 1020;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
  border-radius: 4px;
  transition: color 0.19s, background 0.13s;
}
.main-nav a.cta.primary {
  margin-left: 8px;
}
.main-nav a:hover {
  color: var(--secondary);
  background: var(--gray-1);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.12rem;
  background: var(--gray-2);
  border-radius: 8px;
  color: var(--primary);
  padding: 7px 17px 7px 13px;
  margin-left: 18px;
  border: none;
  transition: background 0.14s, color 0.12s;
  z-index: 1211;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  z-index: 2001;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,45,53,0.92);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.6,.01,.13,.99);
  box-shadow: 0 20px 80px rgba(34,45,53,0.28);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.22rem;
  color: var(--white);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 32px 0 0;
  transition: color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 30px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.12s;
  padding: 7px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--secondary);
}


/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 8px;
}
.contact-info {
  min-width: 240px;
}
.contact-info a {
  color: var(--blue-2);
  transition: color 0.14s;
}
.contact-info a:hover { color: var(--primary); text-decoration: underline; }
.map-location {
  min-width: 220px;
}

/* GENERAL TEXT SECTIONS */
.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 12px;
  color: var(--text-light);
}
.text-section li {
  padding-bottom: 5px;
  font-size: 0.99rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3050;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 -4px 38px var(--shadow);
  border-top: 3px solid var(--secondary);
  padding: 28px 16px 22px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.24,.67,.47,.99) 0.04s, opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 540px;
  color: var(--text-light);
  margin-right: 22px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-banner .cookie-btn {
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 4px;
  transition: background 0.18s, color 0.13s, box-shadow 0.17s;
}
.cookie-banner .cookie-accept {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 1px 6px var(--shadow);
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-reject {
  background: var(--gray-2);
  color: var(--primary);
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: var(--danger);
  color: var(--white);
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--primary);
  color: var(--white);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,45,53,0.83);
  z-index: 3201;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: var(--white);
  border-radius: 22px;
  max-width: 440px;
  width: 95vw;
  padding: 34px 26px 22px 26px;
  box-shadow: 0 2px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookieModalIn 0.26s cubic-bezier(.52,1.7,.73,1.02);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(32px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 9px;
  font-weight: 700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.04rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--primary);
  width: 18px; height: 18px;
}
.cookie-category .cookie-essential {
  font-weight: 600;
  color: var(--gray-3);
}
.cookie-modal-footer {
  margin-top: 13px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-footer .cookie-btn {
  font-size: 1rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.17rem;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--danger);
}


/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .feature-grid, .recipe-cards, .categories-grid, .testimonial-list, .content-grid, .team-list, .tips-list {
    gap: 18px;
  }
  .footer-main {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .brand-logo img {
    height: 46px;
  }
  .container {
    padding: 0 6vw;
  }
}
@media (max-width: 768px) {
  .hero-section {
    border-radius: 0 0 16px 16px;
    padding: 28px 0 24px 0;
  }
  .content-wrapper,
  .card-container,
  .feature-grid,
  .recipe-cards,
  .categories-grid,
  .testimonial-list,
  .team-list,
  .tips-list,
  .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  section, .section {
    margin-bottom: 38px;
    padding: 23px 5vw;
    border-radius: 12px;
  }
  .testimonial-card, .feature, .category-card, .recipe-card, .team-member, .tip-card {
    max-width: 100%;
    min-width: unset;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-bottom {
    padding-bottom: 18px;
    font-size: 0.95rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 6vw 16px 6vw;
    font-size: 0.98rem;
    text-align: left;
  }
  .cookie-banner .cookie-text {
    margin: 0 0 10px 0;
  }
  .cookie-modal {
    padding: 20px 8vw 16px 8vw;
    max-width: 96vw;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .brand-logo img {
    height: 35px;
  }
  .container {
    padding: 0 2vw;
  }
  section, .section {
    padding: 13px 2vw;
  }
}

/* Microinteractions & Transitions */
.card, .testimonial-card, .feature, .category-card, .recipe-card, .team-member, .tip-card {
  transition: box-shadow 0.16s, background 0.16s, transform 0.12s;
}
.cta.primary, .cta.secondary, .main-nav a, .footer-nav a {
  transition: background 0.18s, color 0.15s, transform 0.10s;
}

/* Utilities */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Hide visually for accessibility */
.visually-hidden { position: absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0; }

/* Ensure no elements overlap by spacing */
.card:not(:last-child),
.feature:not(:last-child),
.category-card:not(:last-child),
.recipe-card:not(:last-child),
.team-member:not(:last-child),
.tip-card:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* No grid or columns used anywhere */