/* 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, body {
  height: 100%;
}
body {
  line-height: 1.5;
  background: #212426;
  color: #F3F3ED;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
a {
  color: #D96B33;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.5,.1,.15,1);
  outline: none;
}
a:hover, a:focus {
  color: #25713B;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  color: #F3F3ED;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  color: #F3F3ED;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* --- MAIN LAYOUT SPACING --- */
main {
  min-height: 60vh;
  padding-top: 32px;
  padding-bottom: 64px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34,37,39,0.92);
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(27,31,34,0.12);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

/* --- HEADER --- */
header {
  background: #1a1c1f;
  box-shadow: 0 2px 10px 0 rgba(27,31,34,0.10);
  padding: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: #F3F3ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s cubic-bezier(.32,0,.17,1);
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #D96B33;
  position: absolute;
  left: 0;
  bottom: 4px;
  transition: width 0.2s cubic-bezier(.32,0,.17,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: #D96B33;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.btn.primary {
  background: #25713B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  box-shadow: 0 2px 14px 0 rgba(30,30,30,0.14);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.58,.03,.35,1), transform 0.17s cubic-bezier(.4,0,.2,1);
  margin-left: 20px;
  margin-right: 12px;
}
.btn.primary:hover, .btn.primary:focus {
  background: #D96B33;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: #1a1c1f;
  color: #D96B33;
  font-size: 2.2rem;
  border: none;
  margin-left: 8px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s cubic-bezier(.32,0,.17,1);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #292b2f;
}

/* --- FLEX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222428;
  border: 1px solid #454746;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(32,34,37,0.12);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s cubic-bezier(.32,0,.17,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px 0 rgba(67,73,81,0.22);
}
.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 {
  background: #F3F3ED;
  color: #222427;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px 0 rgba(23,26,28,0.14);
  font-size: 1.05rem;
  position: relative;
}
.testimonial-card p {
  color: #000;
}
.testimonial-card strong {
  color: #25713b;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- INDEX & HOMEPAGE FEATURES --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 240px;
  background: #232526;
  padding: 28px 22px 22px 22px;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(34,37,38,0.13);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #353a3b;
  min-width: 220px;
  max-width: 340px;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: grayscale(17%) brightness(0.92);
}

/* --- RECIPE SECTION --- */
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.recipe-preview {
  background: #232526;
  border: 1px solid #353a3b;
  border-radius: 13px;
  box-shadow: 0 3px 18px 0 rgba(34,37,39,0.12);
  padding: 26px 20px 20px 20px;
  flex: 1 1 290px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s cubic-bezier(.32,0,.17,1), transform 0.18s;
  position: relative;
  min-width: 250px;
}
.recipe-preview:hover, .recipe-preview:focus-within {
  box-shadow: 0 7px 32px 0 rgba(85,90,96,0.22);
  transform: translateY(-3px) scale(1.014);
}
.recipe-preview h3 {
  color: #D96B33;
  font-size: 1.19rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.tags {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: #fff2e5;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
}
.tags span {
  background: #474948;
  color: #F3F3ED;
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 0.95em;
  font-weight: 500;
  font-family: inherit;
}
.recipe-preview a {
  align-self: flex-start;
  margin-top: 7px;
  color: #25713B;
  font-weight: 600;
  text-decoration: underline dotted #d4d4d4;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background 0.15s, color 0.15s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.recipe-preview a:hover, .recipe-preview a:focus {
  background: #25713B;
  color: #fff;
}
.cta-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #D96B33;
  font-size: 1.1em;
  text-decoration: underline;
  transition: color 0.15s;
}
.cta-link:hover, .cta-link:focus {
  color: #25713B;
}

/* --- BLOG LIST & POST --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-post {
  background: #222428;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(34,37,39,0.09);
  padding: 22px 20px 16px 20px;
  flex: 1 1 290px;
  min-width: 240px;
  max-width: 400px;
  border: 1px solid #353a3b;
  margin-bottom: 20px;
  transition: box-shadow 0.15s cubic-bezier(.32,0,.17,1), transform 0.15s;
  font-size: 1.05rem;
}
.blog-post:hover, .blog-post:focus-within {
  box-shadow: 0 5px 24px 0 rgba(44,48,52,0.17);
  transform: translateY(-3px) scale(1.012);
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 7px;
}
.blog-categories span {
  background: #474948;
  border-radius: 8px;
  color: #F3F3ED;
  font-size: 0.98em;
  padding: 5px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- TIPPS-TRICKS PAGE --- */
.tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.tip-grid > div {
  background: #232526;
  border: 1px solid #353a3b;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.tip-categories {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.tip-categories span {
  background: #474948;
  border-radius: 7px;
  color: #D96B33;
  font-size: 0.98em;
  padding: 5px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- FILTER BAR FOR RECIPES --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  background: #232526;
  border-radius: 9px;
  padding: 14px 20px;
  margin-bottom: 18px;
  border: 1px solid #353a3b;
}
.filter-options, .sorting-options {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #eeedea;
  font-family: 'Montserrat', Arial, sans-serif;
}
.search-bar {
  margin-left: auto;
  margin-right: 16px;
}
.search-bar input[type='text'] {
  background: #181a1b;
  color: #F3F3ED;
  border: 1px solid #353a3b;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.13s;
  min-width: 170px;
  outline: none;
}
.search-bar input[type='text']:focus {
  border: 1.5px solid #D96B33;
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #232526;
  border-radius: 10px;
  padding: 28px 22px;
  font-size: 1.1rem;
  border: 1px solid #353a3b;
  box-shadow: 0 1px 8px rgba(34,37,38,0.13);
}

/* --- HIGHLIGHT LIST --- */
.highlight-list {
  margin-bottom: 22px;
  font-size: 1.1rem;
  color: #D96B33;
}
.highlight-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* --- TEAM/ABOUT PAGE --- */
.team-member {
  background: #232526;
  border-radius: 12px;
  border: 1px solid #353a3b;
  box-shadow: 0 0.8px 7px rgba(34,37,38,0.08);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  max-width: 380px;
  min-width: 220px;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-member h3 {
  color: #25713B;
  margin-bottom: 8px;
}
.team-member a {
  color: #D96B33;
  font-weight: 500;
  text-decoration: underline;
}
.team-member a:hover, .team-member a:focus {
  color: #25713B;
}

/* --- FAQ --- */
.faq-list {
  list-style-type: disc;
}
.faq-list li {
  margin-bottom: 14px;
}
.faq-list strong {
  color: #D96B33;
}
.faq-list p {
  color: #F3F3ED;
  margin-bottom: 10px;
  margin-top: 7px;
  font-size: 1em;
}

/* --- CONTACT PAGE --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
}
.contact-info img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0.93) grayscale(21%);
}

/* --- FOOTER --- */
footer {
  background: #181a1b;
  color: #F3F3ED;
  padding: 40px 0 13px 0;
  font-size: 1rem;
  border-top: 1px solid #303134;
  box-shadow: 0 -2px 18px rgba(14,16,18,0.13);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 38px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #F3F3ED;
  font-size: 0.99em;
  position: relative;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D96B33;
}
.footer-contact {
  font-size: 0.98em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #e4e4e1;
  line-height: 1.6;
}
.footer-note {
  width: 100%;
  color: #aaaaa8;
  text-align: right;
  font-size: 0.93em;
  margin-top: 13px;
}

/* --- BUTTONS & MICRO-INTERACTIONS --- */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  outline: none;
}
.btn, .mobile-menu-close, .cookie-btn {
  transition: background 0.17s cubic-bezier(.32,0,.17,1), box-shadow 0.17s cubic-bezier(.32,0,.17,1), color 0.18s cubic-bezier(.32,0,.17,1), transform 0.16s;
}
.cookie-btn {
  padding: 11px 28px;
  margin: 0 10px 0 0;
  border-radius: 9px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  background: #232526;
  color: #F3F3ED;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(34,37,39,0.11);
}
.cookie-btn.accept {
  background: #25713B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #275E2D;
}
.cookie-btn.reject {
  background: #B64420;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #912800;
}
.cookie-btn.settings {
  background: #474948;
  color: #fff2e5;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #373839;
}

/* --- MOBILE MENU / HAMBURGER --- */
.mobile-menu {
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: #111315e8;
  box-shadow: 0 12px 24px 0 rgba(27,32,37,0.36);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.85,0,.24,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  right: 26px;
  top: 26px;
  font-size: 2rem;
  color: #F3F3ED;
  background: #232526;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1003;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #292b2f;
  color: #D96B33;
}

.mobile-nav {
  margin-top: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #F3F3ED;
  font-size: 1.3rem;
  padding: 13px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  width: 90%;
  text-align: center;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
  background: none;
}
.mobile-nav a:active, .mobile-nav a:focus {
  background: #D96B33;
  color: #fff;
}
.mobile-nav a:hover {
  background: #222527;
  color: #D96B33;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1090px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid > div,
  .tip-grid > div,
  .recipe-preview,
  .blog-post,
  .team-member {
    max-width: 100%;
  }
  footer .container,
  header .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-note {
    text-align: left;
    margin-top: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .tip-grid,
  .card-container,
  .recipe-grid,
  .blog-list,
  .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 18px;
    padding-bottom: 32px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  header .container,
  .footer-contact,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-nav {
    display: none;
  }
  .btn.primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-note {
    text-align: left;
    font-size: 0.92em;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .btn.primary, .cookie-btn {
    padding: 13px 15px;
    font-size: 1em;
  }
  .cta-link {
    font-size: 1em;
  }
  .mobile-menu-close {
    right: 13px;
    top: 11px;
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232526;
  color: #F3F3ED;
  z-index: 1100;
  padding: 26px 24px 22px 24px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 -3px 22px rgba(17,20,24,0.15);
  border-top: 1.8px solid #353a3b;
  animation: cookieSlideIn 0.6s cubic-bezier(.5,.09,.18,1);
}
@keyframes cookieSlideIn {
  from {transform: translateY(90px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(27, 31, 34, 0.83);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.36s cubic-bezier(.6,.07,.22,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1a1c1f;
  max-width: 420px;
  width: 98vw;
  border-radius: 19px;
  box-shadow: 0 8px 34px rgba(30,30,30,0.18);
  padding: 38px 28px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.09em;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modalPopIn 0.55s cubic-bezier(.85,0,.19,1);
}
@keyframes modalPopIn {
  from {transform: scale(0.95) translateY(30px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 13px;
  font-size: 1.7rem;
  color: #222427;
  background: transparent;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #D96B33;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  background: #F3F3ED;
  color: #232526;
  border-radius: 8px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 7px rgba(30,30,30,0.08);
  border: 1px solid #e5e5e3;
  font-size: 1.03em;
}
.cookie-category.essential {
  font-weight: 700;
  opacity: 0.73;
  background: #e7ebe8;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #c0c0bb;
  position: relative;
  transition: background 0.17s;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
}
.cookie-toggle[data-enabled='true'] {
  background: #25713B;
}
.cookie-toggle-circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 2px rgba(60,60,60,0.13);
  transition: left 0.17s cubic-bezier(.53,0,.14,1);
}
.cookie-toggle[data-enabled='true'] .cookie-toggle-circle {
  left: 19px;
}

/* --- SCROLLBAR (INDUSTRIAL MODERN) --- */
::-webkit-scrollbar {
  width: 10px;
  background: #232526;
}
::-webkit-scrollbar-thumb {
  background: #353a3b;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2b2c2e;
}

/* --- SHADOWS / METALLIC EFFECTS --- */
.card, .team-member, .testimonial-card, .feature-grid > div, .tip-grid > div, .recipe-preview, .blog-post {
  box-shadow:
    0 1.5px 11px rgba(67,73,81,0.13),
    0 0.07px 1.2px 0 rgba(200,210,190,0.08);
  border: 1px solid #353a3b;
}

/* --- INDUSTRIAL MODERN METALLIC ACCENTS --- */
.section, .feature-grid > div, .tip-grid > div, .recipe-preview, .blog-post, .newsletter-signup, .filter-bar {
  border-image: linear-gradient(90deg, #565B5E 33%, #353a3b 67%, #767b70 100%) 2;
}

/* --- TRANSITIONS FOR ALL CARDS/SECTIONS --- */
.card, .team-member, .testimonial-card, .feature-grid > div, .tip-grid > div, .recipe-preview, .blog-post {
  transition: box-shadow 0.2s cubic-bezier(.32,0,.17,1), transform 0.18s cubic-bezier(.53,0,.14,1);
}

/* --- FOCUS STYLES FOR ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid #D96B33;
  outline-offset: 2px;
}

/* --- PRINT CLEANUP --- */
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { padding: 0 !important; }
}

/* --- HIDE ELEMENTS IF JS ADDS .no-scroll TO BODY (MOBILE MENU/COOKIE) --- */
body.no-scroll {
  overflow: hidden !important;
}
