/* ==== CSS RESET and 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.52;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFF;
  color: #181818;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #066E39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFBF00;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input[type="submit"] {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid #01C2A6;
  outline-offset: 2px;
}

/* ==== VARS ==== */
:root {
  --brand-primary: #274E13;
  --brand-secondary: #D1AF6E;
  --brand-accent: #F8F8F8;
  --electric-pink: #ff1973;
  --electric-blue: #009bf5;
  --electric-green: #01c2a6;
  --electric-yellow: #ffbf00;
  --electric-orange: #ff764a;
  --bg-main: #FFFFFF;
  --bg-section: #F6F8F6;
  --text-main: #181818;
  --text-dark: #1a2636;
  --text-light: #fff;
  --text-secondary: #4D4D4D;
  --shadow-strong: 0 6px 32px 0 rgba(0,40,35,0.11), 0 2px 8px 0 rgba(0,0,0,0.07);
  --shadow-medium: 0 2px 14px 0 rgba(0,0,0,0.11);
  --shadow-light: 0 0.5px 2px 0 rgba(0,0,0,0.07);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius: 8px;
  --heading-font: 'Bree Serif', 'Georgia', serif;
  --body-font: 'Open Sans', Arial, sans-serif;
  --transition: 0.22s cubic-bezier(.69,-0.26,.62,1.32);
  --container-width: 1140px;
}

/* ==== GENERAL LAYOUT ==== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: bold;
  color: var(--brand-primary);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.5rem;
  color: var(--electric-pink);
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  color: var(--brand-primary);
}
h3 {
  font-size: 1.25rem;
  color: var(--electric-blue);
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, span, li, label, input, select, textarea {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-secondary);
}
p.subheadline {
  font-size: 1.25rem;
  color: var(--electric-blue);
  margin-bottom: 18px;
  font-weight: 600;
}
strong, b {
  color: var(--brand-primary);
}

/* ==== HEADER + NAVBAR ==== */
header {
  background: var(--bg-main);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 40;
}
.logo img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 20px 10px 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--electric-pink);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-primary);
  background: var(--electric-yellow);
}

.cta.primary {
  background: var(--brand-primary);
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-size: 1.12rem;
  font-weight: bold;
  padding: 11px 26px;
  margin-left: 18px;
  box-shadow: var(--shadow-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition), box-shadow 0.17s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--electric-pink);
  color: #fff;
  box-shadow: 0 0 0 3px var(--electric-pink, #ff1973, #e154af33);
}

/* Burger menu toggle btn */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-yellow);
  color: var(--brand-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  box-shadow: var(--shadow-light);
  transition: background var(--transition), color var(--transition);
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric-orange);
  color: #fff;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 252, 251, 0.98);
  box-shadow: -2px 0 26px 2px rgba(0,0,0,0.08);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 38px 24px 24px 24px;
  pointer-events: none;
  opacity: 0;
  transition: left 0.46s cubic-bezier(.68,-0.16,.36,1.38), opacity 0.22s;
}
.mobile-menu.open {
  left: 0;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--electric-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-self: flex-end;
  margin-right: 4px;
  margin-bottom: 14px;
  transition: background var(--transition);
}
.mobile-menu-close:hover {
  background: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  color: var(--electric-blue);
  font-size: 1.25rem;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid #e5e5e5;
  width: 96%;
  transition: color var(--transition), background 0.19s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-pink);
  background: #faeeee;
  border-radius: var(--radius-md);
  padding-left: 8px;
}

/* ==== HERO SECTIONS ==== */
.hero {
  background: linear-gradient(92deg, var(--electric-yellow) 0%, var(--electric-green) 58%, var(--brand-accent) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-strong);
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: var(--electric-pink);
  font-family: var(--heading-font);
  font-size: 2.6rem;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 20px rgba(255,25,115,.10);
}
.hero .subheadline {
  color: var(--text-dark);
}

/* ==== FEATURE GRIDS/CARDS ==== */
.feature-grid, .recipe-grid, .categories-row, .featured-recipes, .classic-dishes, .faq-list, .storytelling-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .category, .recipe-card, .recipe-teaser, .classic-card, .story-snippet, .faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: calc(33.33% - 24px);
  padding: 26px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  position: relative;
  border: 2px solid transparent;
  transition: box-shadow .19s, border-color .17s;
}
.feature:hover, .category:hover, .recipe-card:hover,
.recipe-teaser:hover, .classic-card:hover, .story-snippet:hover, .faq-item:hover {
  border-color: var(--electric-pink);
  box-shadow: 0 4px 40px 2px rgba(255,25,115,0.12), 0 2px 10px rgba(0,0,0,0.07);
}
.feature img, .category img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.10));
}
.category h3, .feature h3, .recipe-card h3, .classic-card h3, .story-snippet h3 {
  font-size: 1.22rem;
  color: var(--electric-green);
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.popular-tags span {
  background: var(--electric-blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-light);
}

.featured-recipes, .recipe-grid, .classic-dishes {
  gap: 24px;
  flex-wrap: wrap;
  display: flex;
  align-items: stretch;
  margin-bottom: 12px;
}
.recipe-teaser, .recipe-card, .classic-card {
  max-width: 340px;
}
.recipe-teaser h3, .recipe-card h3 {
  color: var(--electric-orange);
}
.tag {
  display: inline-block;
  background: var(--electric-green);
  color: #fff;
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.values-list li {
  background: #fffdf4;
  border-left: 5px solid var(--electric-yellow);
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--brand-primary);
  font-weight: 600;
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.tip-list li {
  background: #f3f9fb;
  border-radius: var(--radius);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 1.02rem;
  border-left: 5px solid var(--electric-blue);
}
.tip-list img {
  width: 26px;
  height: 26px;
}

.regional-dishes {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  margin-top: 20px;
  padding: 18px 17px 12px 20px;
  box-shadow: var(--shadow-light);
  color: var(--brand-primary);
}
.regional-dishes h3 {
  color: var(--electric-orange);
  margin-bottom: 9px;
}
.regional-dishes ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 2px;
}
.regional-dishes li {
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1.06rem;
}

/* ==== FAQ LIST ==== */
.faq-section {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  position: relative;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.faq-item {
  flex: 1 1 300px;
  padding: 20px 18px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .14s;
}
.faq-item h3 {
  font-size: 1.12rem;
  color: var(--electric-green);
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: linear-gradient(92deg, #fff 0%, #f8f8fd 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-light);
  padding: 36px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  margin-bottom: 20px;
  border-left: 5px solid var(--electric-pink);
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  flex: 1;
  color: #1a2636;
  font-weight: 600;
  font-size: 1.11rem;
}
.testimonial-card span {
  color: var(--brand-primary);
  font-size: 0.98rem;
  font-weight: 400;
  white-space: nowrap;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 4px rgba(255,25,115,0.09), 0 4px 16px 0 rgba(0,0,0,0.08);
}

/* ==== THANK YOU, LEGAL, TEXT SECTIONS ==== */
.legal-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--radius-lg);
}
.text-section {
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section p {
  color: var(--brand-primary);
  font-size: 1.02rem;
}
.contact-details {
  margin-bottom: 16px;
  gap: 7px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1.05rem;
}
.contact-details img {
  width: 21px;
}

/* ==== FOOTER ==== */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 40px 0 24px 0;
}
footer .container {
  flex-direction: column;
  gap: 26px;
  align-items: stretch;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--electric-yellow);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 12px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--electric-pink);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 0.97rem;
  color: #f9f9fa;
}
.footer-contact a {
  color: var(--electric-yellow);
}
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.footer-branding img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
}
.footer-branding span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

/* ==== BUTTONS ==== */
button, .button, .cta {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--heading-font);
  font-size: 1rem;
  border-radius: var(--radius-md);
  padding: 10px 25px;
  text-align: center;
  transition: background var(--transition), color var(--transition), box-shadow 0.19s;
  box-shadow: var(--shadow-light);
}

.cta.secondary, .button.secondary {
  background: var(--electric-blue);
  color: #fff;
}
.cta.secondary:hover, .button.secondary:hover {
  background: var(--electric-pink);
}

/* ==== SEARCH/BAR ==== */
.search-bar {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 10px;
  background: #fff;
  box-shadow: var(--shadow-light);
  border-radius: var(--radius-md);
  padding: 6px 12px 6px 16px;
}
.search-bar input[type=search] {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  width: 170px;
  color: var(--brand-primary);
  padding: 6px 0;
  outline: none;
}
.search-bar button {
  background: var(--electric-green);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: #fff;
  font-size: 1.1rem;
}
.search-bar button:hover {
  background: var(--electric-blue);
}
.search-bar img {
  width: 22px;
  height: 22px;
}

/* ==== RESPONSIVE FLEX DIRECTION AND SPACING ==== */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Testimonials already handled above. */

/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1201;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 6px 26px 4px rgba(0,90,90,.13);
  border-radius: var(--radius-lg);
  padding: 24px 32px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 420px;
  animation: cookieFadeIn 0.52s cubic-bezier(.44,1.67,.53,.9);
}
@keyframes cookieFadeIn {
  from { opacity:0; transform:translateY(42px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: bold;
  box-shadow: var(--shadow-light);
  border: none;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .accept {
  background: var(--electric-green);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--electric-blue);
}
.cookie-banner .reject {
  background: #fff;
  border: 2px solid var(--electric-pink);
  color: var(--electric-pink);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--electric-yellow);
  color: var(--brand-primary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--electric-pink);
  color: #fff;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1301;
  left:0; top:0; right:0; bottom:0;
  width:100vw; height:100vh;
  background: rgba(0,0,0,0.27);
  animation: fadeIn .3s;
  align-items: center;
  justify-content: center;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 72px 10px rgba(10,60,100,.22), 0 1.5px 3px rgba(0,0,0,0.09);
  padding: 32px 30px 28px 30px;
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn .34s cubic-bezier(.7,1.46,.34,1.12);
}
@keyframes modalIn {
  from {opacity: 0; transform: scale(.90) translateY(36px);}
  to {opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--brand-primary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .toggle {
  width: 40px;
  height: 22px;
  background: #e5e5e5;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  margin-right: 9px;
}
.cookie-modal .toggle[data-active="true"] {
  background: var(--electric-blue);
}
.cookie-modal .toggle-inner {
  position: absolute;
  top:2px;
  left:2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,50,90,0.09);
  transition: left 0.19s;
}
.cookie-modal .toggle[data-active="true"] .toggle-inner {
  left:20px;
}
.cookie-modal .cookie-essential {
  color: var(--brand-primary);
  font-weight: bold;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: var(--electric-pink);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  border: none;
  transition: background var(--transition);
}
.cookie-modal .close-modal:hover {
  background: var(--brand-primary);
}

/* ==== UTILITIES ==== */
.flex {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.gap-20 {
  gap: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-32 {
  margin-bottom: 32px;
}
.radius-lg {
  border-radius: var(--radius-lg);
}

/* ==== ANIMATIONS/MICRO-INTERACTIONS ==== */
.card, .feature, .recipe-card, .category, .faq-item, .recipe-teaser, .classic-card, .story-snippet {
  transition: box-shadow .18s, border-color .19s, transform .10s;
}
.card:hover, .feature:hover, .category:hover, .recipe-card:hover, .faq-item:hover, .recipe-teaser:hover, .classic-card:hover, .story-snippet:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 8px 42px 6px rgba(1,194,166,0.13), 0 1.7px 6px 0 rgba(255,25,115,0.11);
}
.cta.primary:active {
  transform: scale(.97);
}
.button:active {
  transform: scale(.98);
}

/* ======= MEDIA QUERIES - RESPONSIVENESS ======= */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  header .container{
    flex-direction: row;
    gap: 13px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .feature,
  .category,
  .recipe-card,
  .classic-card,
  .story-snippet,
  .faq-item,
  .recipe-teaser {
    min-width: 90vw;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .feature-grid, .categories-row, .featured-recipes, .recipe-grid, .classic-dishes, .faq-list, .storytelling-row {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    margin-left: 0;
    padding: 10px 16px;
    font-size: 1rem;
  }
  .hero {
    min-height: 170px;
    margin-bottom: 30px;
    padding: 16px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .section, .legal-section, .thank-you-section, .faq-section {
    margin-bottom: 36px;
    padding: 20px 5px 28px 5px;
    border-radius: var(--radius-md);
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 13px 13px 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 6px;
  }
  .footer-branding {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 15px 8px 15px 8px;
    max-width: 99vw;
    font-size: 0.98rem;
  }
  .search-bar input[type=search] {
    width: 110px;
    font-size: 1rem;
  }
  .storytelling-row, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  .feature, .category, .recipe-card,
  .classic-card, .story-snippet, .faq-item, .recipe-teaser {
    min-width: 99vw;
    max-width: 100vw;
    border-radius: var(--radius);
    padding: 16px 7px 14px 7px;
  }
  .testimonial-card {
    padding: 13px 7px 13px 10px;
    border-radius: var(--radius);
  }
  .footer-contact, .footer-branding {
    font-size: 0.91rem;
  }
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    max-width: 100vw;
  }
}
/* ==== END OF STYLE ==== */
