/* === 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,
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; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #FAFAFA; min-height: 100vh; color: #181818; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; border: 0; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&family=Crimson+Pro:wght@400;700&display=swap');

:root {
  --brand-primary: #8C201F;
  --brand-secondary: #174125;
  --brand-accent: #FAF4EA;
  --black: #111111;
  --white: #FFF;
  --gray-100: #F4F4F4;
  --gray-200: #E0E0E0;
  --gray-400: #C2C2C2;
  --gray-600: #838383;
  --gray-900: #212121;
  --shadow: 0 2px 8px rgba(24,24,24,0.10),0 1.5px 6px rgba(24,24,24,0.08);
}

body {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--gray-100);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.18;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4 { font-size: 1.08rem; }

p, li {
  color: var(--gray-900);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 10px;
}
p:last-child, li:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--black); }

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  padding: 3px 4px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-primary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  background: var(--black);
  color: var(--white);
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 24px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(24,24,24,.09);
  outline: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  box-shadow: 0 4px 16px rgba(140,32,31,0.12);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  background: var(--white);
  color: var(--brand-primary);
  font-size: 2rem;
  border-radius: 8px;
  height: 48px;
  width: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background 0.2s;
  z-index: 1001;
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 1.5px 6px rgba(24,24,24,0.04);
  cursor: pointer;
}
.mobile-menu-toggle:hover {
  background: var(--gray-200);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.45,.48,.46,1);
  box-shadow: 0 0 32px 0 rgba(0,0,0,.08);
  padding-top: 32px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.25rem;
  background: none;
  color: var(--brand-primary);
  margin: 0 32px 20px 0;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2100;
}
.mobile-menu-close:hover {
  background: var(--gray-200);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Crimson Pro', serif;
  font-size: 1.3rem;
  color: var(--black);
  padding: 10px 0;
  transition: color 0.2s;
  border-bottom: 1px solid var(--gray-200);
  width: 100%;
  font-weight: 700;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-primary);
}

/* --- RESPONSIVE NAVIGATION --- */
@media (max-width: 1024px) {
  .main-nav { gap: 16px; }
  .cta-button { margin-left: 10px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 900px) {
  .main-nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === HERO SECTIONS === */
.hero {
  background: var(--white);
  margin-bottom: 60px;
  padding: 40px 0 48px;
  box-shadow: 0 2px 18px rgba(140,32,31,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  max-width: 810px;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero p {
  color: var(--gray-900);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.hero .cta-button {
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hero {
    padding: 32px 0 36px;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
}

/* === MAIN SECTIONS SPACING & WRAPPERS === */
.section,
.features, .about-teaser, .testimonials,
.about, .team, .tradition-features, .content-spot,
.recipe-list, .cta-block, .faq, .services,
.tour-details, .testimonial-preview, .contact,
.legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 600px) {
  .section, .features, .about-teaser, .testimonials, .about, .team, .tradition-features, .content-spot, .recipe-list, .cta-block, .faq, .services, .tour-details, .testimonial-preview, .contact, .legal, .thank-you {
    padding: 24px 5px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* === CARD CONTAINERS & FLEX LAYOUTS === */
.card-container, .feature-grid, .testimonial-list,
.content-grid, .faq-list, .content-wrapper, .recipe-list .content-wrapper,
.services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card, .feature-item, .testimonial-card, .workshop-item, .recipe-card, .faq-item {
  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;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,24,24,0.07);
  border: 1.5px solid var(--gray-200);
  min-width: 260px;
  max-width: 480px;
  margin-right: 12px;
  margin-bottom: 20px;
  flex: 1 1 42%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gray-100);
  padding: 24px 20px 18px;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(18,19,20,0.06);
  transition: box-shadow 0.2s, transform 0.24s;
  min-width: 230px;
  flex-basis: 260px;
  flex-grow: 1;
  border: 1.5px solid var(--gray-200);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 4px 24px rgba(24,24,24,0.12);
  transform: translateY(-2px) scale(1.018);
  z-index: 10;
  border-color: var(--brand-primary);
}

.workshop-item, .recipe-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 18px 18px 12px;
  box-shadow: 0 1.5px 7px rgba(18,19,20,0.06);
  flex: 1 1  230px;
  border: 1.5px solid var(--gray-200);
  transition: border 0.2s, box-shadow 0.23s;
}
.workshop-item:hover,
.recipe-card:hover { border-color: var(--brand-primary); box-shadow: 0 3px 16px rgba(140,32,31,0.09); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.faq-item {
  background: var(--brand-accent);
  padding: 18px 16px;
  border-radius: 9px;
  box-shadow: 0 1.5px 7px rgba(18,19,20,0.04);
  border: 1.2px solid var(--gray-200);
  transition: box-shadow 0.2s, border 0.21s;
}
.faq-item h3 { font-size: 1.09rem; margin-bottom: 4px; font-weight: 700; color: var(--brand-primary); }
.faq-item p { color: var(--gray-900); font-weight: 400; }
.faq-item:hover { border: 1.5px solid var(--brand-primary); box-shadow: 0 4px 17px rgba(140,32,31,0.10); }

@media (max-width: 900px) {
  .feature-grid,
  .testimonial-list, .content-grid, .recipe-list .content-wrapper,
  .services .content-wrapper {
    gap: 15px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .recipe-card, .testimonial-card, .workshop-item {
    min-width: unset;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* === ABOUT, TEAM, LEGAL, THANK YOU === */
.about .content-wrapper,
.team .content-wrapper,
.legal .content-wrapper,
.thank-you .content-wrapper,
.tour-details .content-wrapper,
.content-spot .content-wrapper,
.tradition-features .content-wrapper,
.contact .content-wrapper
{
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}
.team-expert-quote blockquote {
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: var(--brand-secondary);
  font-style: italic;
  border-left: 3px solid var(--brand-primary);
  padding-left: 16px;
  margin-bottom: 4px;
}
.team-expert-quote cite {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.tagline {
  font-family: 'Crimson Pro', serif;
  color: var(--brand-primary);
  font-style: italic;
}

@media (max-width: 700px) {
  .content-wrapper { gap: 11px; }
}

/* === TESTIMONIALS === */
.testimonials, .testimonial-preview {
  background: var(--gray-100);
  box-shadow: 0 2px 14px rgba(24,24,24,0.08);
  border-radius: 14px;
  margin-bottom: 60px;
}
.testimonials h2, .testimonial-preview h2 {
  font-family: 'Crimson Pro', serif; color: var(--brand-primary); margin-bottom: 22px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  align-items: stretch;
  margin-top: 4px;
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--brand-primary);
  color: var(--black);
  box-shadow: 0 2px 13px rgba(24,24,24,0.09);
}
.testimonial-card p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.04rem;
  color: var(--brand-secondary);
  margin-bottom: 7px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--gray-600);
  font-size: 0.98rem;
  margin-left: 4px;
}

/* === FOOTER === */
footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 24px;
  width: 100%;
  box-shadow: 0 -2px 16px rgba(24,24,24,0.09);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-branding img {
  filter: invert(1);
  width: 44px;
  height: auto;
}
.footer-branding p {
  color: var(--gray-400);
  font-size: 1.02rem;
  font-family: 'Crimson Pro', serif;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 210px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  transition: color 0.2s;
  opacity: 0.85;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-primary);
  opacity: 1;
}
.footer-contact p, .footer-contact a {
  color: var(--gray-400);
  font-size: 0.99rem;
  margin-bottom: 2px;
}
.footer-contact a {
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-nav {
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  footer { padding: 26px 0 6px; }
  .footer-branding img { width: 28px; }
}

/* === COOKIES BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 2px solid var(--gray-200);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  z-index: 3000;
  gap: 18px;
  animation: cookiefadein 0.7s cubic-bezier(.21,.9,.54,1.12);
}
@keyframes cookiefadein {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner p {
  color: var(--gray-900);
  font-size: 1.06rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button,
.cookie-banner .cookie-settings {
  padding: 10px 22px;
  border-radius: 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 7px rgba(24,24,24,0.08);
}
.cookie-banner button.accept {
  background: var(--brand-primary);
  color: var(--white);
}
.cookie-banner button.reject {
  background: var(--gray-400);
  color: var(--black);
}
.cookie-banner .cookie-settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: var(--brand-secondary);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: var(--brand-secondary);
  color: var(--white);
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--white);
  color: var(--brand-secondary);
}
@media (max-width: 670px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 13px; }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,30,0.46);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s cubic-bezier(.51,.95,.43,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  box-shadow: 0 6px 40px rgba(8,8,8,0.18);
  border-radius: 18px;
  min-width: 340px;
  max-width: 96vw;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 4100;
  animation: zoomup 0.38s cubic-bezier(.51,.95,.43,1);
}
@keyframes zoomup {
  0% { opacity: 0; transform: scale(0.82); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  font-family: 'Crimson Pro', serif;
  color: var(--black);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--gray-900);
  font-family: 'Nunito', sans-serif;
}
.cookie-category-toggle {
  margin-left: auto;
}
.cookie-toggle {
  width: 43px;
  height: 24px;
  background: var(--gray-200);
  border-radius: 16px;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute; left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: var(--brand-primary);
  border-radius: 50%;
  transition: left 0.20s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-slider {
  left: 23px; /* move slider to right */
  background: var(--brand-secondary);
}
.cookie-category.essential label {
  font-weight: bold;
  color: var(--brand-secondary);
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  padding: 10px 22px;
  border-radius: 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--brand-primary);
  color: var(--white);
  transition: background 0.16s, color 0.13s;
}
.cookie-modal-buttons button.reject {
  background: var(--gray-400);
  color: var(--black);
}
.cookie-modal-buttons button.save {
  background: var(--brand-secondary);
  color: var(--white);
}

@media (max-width: 500px) {
  .cookie-modal { min-width: 0; padding: 16px 9px; }
}

/* === CTA BLOCKS === */
.cta-block, .about-teaser {
  background: var(--brand-accent);
  box-shadow: 0 2px 14px rgba(24,24,24,0.05);
  border: 1.5px solid var(--gray-200);
}
.cta-block .content-wrapper, .about-teaser .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cta-block h2, .about-teaser h2 {
  color: var(--brand-primary);
  font-family: 'Crimson Pro', serif;
}
.cta-block a, .about-teaser a {
  color: var(--brand-secondary);
  font-weight: bold;
  text-decoration: underline;
  font-family: 'Nunito', Arial, sans-serif;
  margin-top: 4px;
  font-size: 1.15rem;
  transition: color 0.2s;
}
.cta-block a.cta-button { text-decoration: none; margin-top: 10px; }
.cta-block a:hover, .about-teaser a:hover { color: var(--brand-primary); }

/* === FORMS AND LINKS === */
a {
  cursor: pointer;
  text-decoration-skip-ink: auto;
  transition: color 0.2s;
}
a:hover, a:focus { color: var(--brand-primary); }

input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  padding: 10px;
  background: var(--white);
  margin-bottom: 14px;
  font-size: 1rem;
  width: 100%;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-primary);
}
label {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--gray-900);
}

/* === MISC UTILITY CLASSES === */
.text-center { text-align: center; }
.align-center, .centered { display: flex; align-items: center; justify-content: center; }

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 850px) {
  .container { max-width: 98vw; padding: 0 7px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.03rem; }
  .section, .hero, .footer, .about-teaser, .cta-block, .about, .team, .legal, .cookie-banner { border-radius: 0; }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* === VISUAL HIERARCHY (Spacing & Shadows) === */
.section h2, .features h2, .about-teaser h2, .testimonials h2,
.about h2, .team h2, .tradition-features h2, .content-spot h2,
.recipe-list h2, .cta-block h2, .faq h2, .services h2, .tour-details h2, .testimonial-preview h2, .contact h2, .legal h1, .thank-you h1 {
  margin-bottom: 18px;
}

.section, .features, .about-teaser, .testimonials, .about, .team, .tradition-features, .content-spot, .recipe-list, .cta-block, .faq, .services, .tour-details, .testimonial-preview, .contact, .legal, .thank-you {
  margin-bottom: 60px;
}

.card-container, .feature-grid, .testimonial-list,
.content-grid, .faq-list, .content-wrapper, .recipe-list .content-wrapper, .services .content-wrapper {
  gap: 24px;
}

.card, .feature-item, .testimonial-card, .workshop-item, .recipe-card, .faq-item {
  margin-bottom: 20px;
}

/* === MICRO-INTERACTIONS === */
.cta-button, .cookie-banner button, .cookie-banner .cookie-settings, .cookie-modal-buttons button {
  transition: background 0.22s, color 0.18s, box-shadow 0.19s, transform 0.2s;
}
.cta-button:active, .cookie-banner button:active, .cookie-modal-buttons button:active {
  transform: scale(0.97);
}

.feature-item img, .logo img, .footer-branding img {
  transition: filter 0.12s, transform 0.21s;
}
.feature-item:hover img {
  transform: scale(1.09) rotate(-4deg);
  filter: brightness(1.08) contrast(1.13);
}

.workshop-item:hover h3, .recipe-card:hover h3 {
  color: var(--brand-primary);
  transition: color 0.2s;
}

/* === DARK/LIGHT CONTRAST === */
.testimonial-card, .faq-item {
  background: var(--white);
  color: var(--black);
}
.testimonial-card p, .faq-item p, .testimonial-card span {
  color: var(--gray-900);
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px 0;
  }
  .testimonial-card { max-width: 100%; }
}

/* === PRINT FRIENDLY === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, main, body { background: #FFF !important; color: #000 !important; }
}
