/* Madrisplen Küche - Playful Dynamic Style CSS */
/* 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,
main,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 {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FAF9F3;
  font-family: 'Roboto', Arial, sans-serif;
  color: #283F2E;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section {
  display: block;
}
ul,ol {
  list-style: none;
  margin: 0;
}
a {
  color: #D96B25;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.37,1.49,.82,1.03);
}
a:hover,a:focus {
  color: #283F2E;
}
img {
  border: none;
  max-width: 100%;
  display: block;
}
button,input,select,textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/**************************
  BRAND FONTS
**************************/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;800&family=Roboto:wght@400;700&display=swap');

:root {
  --brand-primary: #283F2E;
  --brand-secondary: #D96B25;
  --brand-accent: #FAF9F3;
  --brand-bg: #FAF9F3;
  --brand-dark: #283F2E;
  --brand-dark-contrast: #18301C;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-playful: 0 4px 24px 0 rgba(217,107,37,0.10), 0 2px 6px 0 rgba(40,63,46,0.07);
  --transition: 0.18s cubic-bezier(.37,1.49,.82,1.03);
  --shadow-card: 0 4px 24px 0 rgba(40,63,46,0.09), 0 1.5px 8px 0 rgba(217,107,37,0.06);
  --gap: 20px;
}

/**************************
  LAYOUT CONTAINERS
**************************/
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/**************************
  HEADER & NAV
**************************/
header {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(40,63,46,0.08);
  padding: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.04));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
.main-nav a:hover,
.main-nav a:focus {
  background: rgba(217,107,37,0.15);
  color: #FFF3E3;
}
.cta.primary {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-playful);
  outline: none;
  border: none;
  margin-left: 28px;
  transition: background var(--transition), transform 0.10s;
  display: inline-block;
  position: relative;
}
.cta.primary:hover,.cta.primary:focus {
  background: #B84F14;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
.cta.secondary {
  background: #fff;
  color: var(--brand-secondary);
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-secondary);
  padding: 12px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 18px;
  box-shadow: var(--shadow-card);
  transition: background var(--transition), color var(--transition);
}
.cta.secondary:hover,.cta.secondary:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/**************************
  MOBILE MENU
**************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 2001;
  width: 48px;
  height: 48px;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 4px 18px 0 rgba(217,107,37,0.16);
  border: none;
  justify-content: center;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #B84F14;
  box-shadow: 0 0 0 4px rgba(217,107,37,0.12);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 2002;
  padding: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.53,2.03,.72,.97), opacity 0.24s;
  box-shadow: 2px 0 24px 0 rgba(40,63,46,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 22px 0 0 16px;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: flex;
  border: none;
  box-shadow: 0 4px 12px 0 rgba(217,107,37,0.09);
  transition: box-shadow var(--transition), background var(--transition);
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #B84F14;
  box-shadow: 0 0 0 4px rgba(217,107,37,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 36px;
  width: 80vw;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.04em;
  padding: 12px 4px 12px 0;
  border-bottom: 2px solid rgba(217,107,37,0.12);
  transition: color var(--transition), border var(--transition);
}
.mobile-nav a:hover,.mobile-nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/**************************
  HERO SECTIONS
**************************/
.hero {
  background: linear-gradient(85deg, #FAF9F3 80%, #FFF5EB 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 4px;
  margin-top: 0;
  letter-spacing: 0.04em;
  line-height: 1.13;
  text-shadow: 0 2px 12px rgba(217,107,37,0.11);
  animation: hero-slide-down 0.8s cubic-bezier(.36,1.42,.52,.93);
}
.hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  max-width: 670px;
  color: var(--brand-dark-contrast);
  margin-bottom: 18px;
  animation: hero-fade-in 1.1s cubic-bezier(.36,1.42,.52,.93) 0.35s backwards;
}
@keyframes hero-slide-down {
  0% {transform: translateY(-30px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
@keyframes hero-fade-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

/**************************
  SECTIONS SPACING & ALIGN
**************************/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**************************
  FEATURES GRIDS
**************************/
.feature-grid, .season-tabs .tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 28px 28px 28px;
  min-width: 256px;
  flex: 1 0 220px;
  margin-bottom: 20px;
  transition: transform 0.21s cubic-bezier(.36,1.42,.52,.93), box-shadow var(--transition);
  position: relative;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  animation: pop-in 0.75s cubic-bezier(.36,1.42,.52,.93);
}
@keyframes pop-in {
  0% { transform: scale(0.7) rotate(-8deg); opacity: 0; }
  50% { transform: scale(1.08) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.feature:hover {
  box-shadow: 0 8px 38px 0 rgba(217,107,37,0.13);
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brand-primary);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2px;
}
.feature p {
  font-size: 16px;
  color: var(--brand-dark-contrast);
}

/**************************
  RECIPE TEASERS & CARDS
**************************/
.recipe-teasers, .recipe-card-grid, .tip-article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.recipe-card, .tip-article-card {
  background: #fffef5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 22px 24px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  position: relative;
  border-left: 6px solid var(--brand-secondary);
  transition: box-shadow var(--transition), border-color var(--transition), transform 0.13s;
}
.recipe-card:hover, .tip-article-card:hover {
  box-shadow: 0 8px 36px 0 rgba(217,107,37,0.13);
  border-left: 7px solid #F18A49;
  transform: translateY(-5px) rotate(-2deg) scale(1.03);
}
.recipe-card h3, .tip-article-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}
.recipe-card p, .tip-article-card p {
  color: #4C6960;
  font-size: 15px;
}
.recipe-card a, .tip-article-card a {
  align-self: flex-start;
  color: var(--brand-secondary);
  border-bottom: 2px solid transparent;
  font-weight: 600;
  font-size: 15px;
  margin-top: 7px;
  transition: color var(--transition), border-bottom-color var(--transition);
  padding-bottom: 1px;
}
.recipe-card a:hover, .tip-article-card a:hover {
  border-bottom: 2px solid var(--brand-secondary);
  color: var(--brand-primary);
}

/**************************
  NEWSLETTER SIGNUP
**************************/
.newsletter {
  background: linear-gradient(95deg, #FFF3E3 90%, #FAF9F3 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-playful);
}
.newsletter-signup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.newsletter-signup input[type=email] {
  padding: 13px 16px;
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  font-size: 17px;
  width: 240px;
  background: #fff;
  transition: border var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px 0 rgba(40,63,46,0.05);
}
.newsletter-signup input[type=email]:focus {
  border: 2px solid var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(217,107,37,0.07);
}
.newsletter-signup button[type=submit] {
  background: var(--brand-secondary);
  color: #fff;
  font-size: 17px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 13px 27px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background var(--transition), transform 0.11s;
  box-shadow: 0 4px 20px 0 rgba(217,107,37,0.15);
}
.newsletter-signup button[type=submit]:hover, .newsletter-signup button[type=submit]:focus {
  background: #B84F14;
  transform: translateY(-1px) scale(1.04);
}

/**************************
  TESTIMONIALS (Slider)
**************************/
.testimonials {
  background: #fffaf5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-playful);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  padding: 25px 25px 22px 25px;
  color: var(--brand-dark-contrast);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 5px solid var(--brand-secondary);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform 0.12s;
  font-size: 16px;
  line-height: 1.5;
}
.testimonial-card:hover {
  box-shadow: 0 9px 36px 0 rgba(40,63,46,0.11);
  transform: translateY(-3px) scale(1.025);
  border-left: 6px solid #DD853B;
}
.testimonial-card p {
  font-style: italic;
  color: #2A3629;
}
.testimonial-card span {
  font-family: 'Roboto', sans-serif;
  color: var(--brand-secondary);
  font-size: 15px;
  font-weight: 700;
}

/**************************
  TABS & SEASONAL TABS
**************************/
.season-tabs .tabs-row {
  margin-top: 16px;
  margin-bottom: 6px;
}
.season-tab {
  flex: 1 1 180px;
  min-width: 180px;
  background: #FFFDF9;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, background 0.16s;
  position: relative;
}
.season-tab:hover {
  background: #FFF4E0;
  box-shadow: 0 8px 34px 0 rgba(217,107,37,0.09);
}
.season-tab h3 {
  color: var(--brand-secondary);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}
.season-tab p {
  font-size: 15px;
  color: var(--brand-dark-contrast);
}

/**************************
  FILTER ROWS (Rezepte)
**************************/
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
.filter-row > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 160px;
}
.filter-row label {
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 1px;
}
.filter-row select {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 2px solid #E7DED0;
  font-size: 15px;
  transition: border var(--transition), box-shadow var(--transition);
}
.filter-row select:focus {
  border: 2px solid var(--brand-secondary);
  box-shadow: 0 0 0 2px rgba(217,107,37,0.12);
}

/**************************
  PAGINATION
**************************/
.pagination {
  display: flex;
  gap: 13px;
  margin: 32px 0 0 0;
  justify-content: center;
}
.page {
  font-family: 'Playfair Display', serif;
  color: var(--brand-secondary);
  background: #fff;
  border: 2px solid var(--brand-secondary);
  border-radius: var(--radius-sm);
  padding: 7px 17px;
  font-size: 17px;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.page.active,
.page:hover {
  background: var(--brand-secondary);
  color: #fff;
  border: 2px solid var(--brand-secondary);
}

/**************************
  LEGAL, ABOUT SECTIONS
**************************/
.legal, .about-section {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-playful);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  padding: 0 10px;
  font-size: 16px;
  color: var(--brand-dark-contrast);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section h2 {
  margin-top: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brand-secondary);
}
.text-section ul {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.text-section ul li {
  list-style: disc inside;
  margin-left: 12px;
  color: var(--brand-primary);
  font-size: 16px;
}

/**************************
  TEAM/LISTS/CARDS
**************************/
.team-member-list,
.tips-list,
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
  font-size: 16px;
  color: #2A3629;
}
.team-member-list strong {
  color: var(--brand-primary);
  font-family: 'Playfair Display', serif;
}
.tips-list li, .contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f4e9;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  box-shadow: 0 1.5px 4px rgba(217,107,37,0.06);
}
.tips-list img, .contact-list img {
  width: 36px;
}

/**************************
  CTA CARDS/SECTIONS
**************************/
.cta {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.cta-card {
  text-align: center;
  padding: 32px 18px 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cta-card h2 {
  color: var(--brand-secondary);
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 800;
}
.cta-card p {
  font-size: 17px;
  color: var(--brand-dark-contrast);
}

/**************************
  SOCIAL ICONS
**************************/
.footer-social, .social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 11px;
  font-size: 16px;
  color: var(--brand-primary);
}
.footer-social img, .social-icons img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0px 2px 4px rgba(217,107,37,0.13));
  transition: transform 0.20s, filter 0.13s;
}
.footer-social a:hover img, .social-icons a:hover img {
  transform: scale(1.13) rotate(-7deg);
  filter: drop-shadow(0px 4px 9px rgba(217,107,37,0.25));
}

/**************************
  FOOTER
**************************/
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 38px 0 32px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Roboto',sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--brand-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 16px;
  color: #fff;
}
.footer-contact address {
  font-style: normal;
  color: #FFF3E3;
}
.footer-contact img {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/**************************
  THANK YOU SECTION
**************************/
.thanks {
  background: #FFF3E3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-playful);
  text-align: center;
  margin-bottom: 64px;
  padding: 40px 20px;
  color: var(--brand-primary);
}
.thanks h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--brand-secondary);
  margin-bottom: 16px;
}
.thanks p {
  color: var(--brand-dark-contrast);
  font-size: 18px;
  margin-bottom: 28px;
}

/**************************
  RESPONSIVE DESIGN
**************************/
@media (max-width: 1024px) {
  .hero h1 {font-size: 30px;}
  .feature-grid, .recipe-teasers, .recipe-card-grid, .testimonial-slider, .tabs-row, .tip-article-teasers {
    gap: 18px;
  }
  .footer-social, .footer-nav, .footer-contact {
    margin-bottom: 12px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0 10px;
  }
  .section, section, .legal, .about-section, .thanks {
    padding: 25px 6px;
    margin-bottom: 40px;
  }
  .hero {
    padding: 30px 10px;
    min-height: unset;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 16px;
  }
  .feature-grid, .recipe-teasers, .recipe-card-grid, .testimonial-slider, .tabs-row, .tip-article-teasers {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .season-tab, .recipe-card, .tip-article-card, .testimonial-card {
    min-width: unset;
    width: 100%;
    box-sizing: border-box;
    padding: 19px 14px;
  }
  .mobile-menu {
    width: 100vw;
    height: 100vh;
  }
  .footer-social, .footer-nav, .footer-contact, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  header img {
    height: 32px;
    margin-right: 6px;
  }
  .cta.primary, .cta.secondary {
    padding: 10px 16px;
    font-size: 16px;
  }
  .newsletter-signup input[type=email] {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .hero h1 {
    font-size: 19px;
  }
  .thanks h1 {
    font-size: 20px;
  }
  .footer-social img, .social-icons img {
    width: 24px;
    height: 24px;
  }
}

/**************************
  COOKIE CONSENT BANNER
**************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3900;
  background: #fffbe8;
  border-top: 3px solid var(--brand-secondary);
  box-shadow: 0 -4px 16px 0 rgba(40,63,46,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 12px 20px 12px;
  font-size: 16px;
  color: var(--brand-primary);
  animation: fadein-banner 0.7s cubic-bezier(.41,1.6,.56,0.89);
}
@keyframes fadein-banner {
  0% {opacity: 0; transform: translateY(50px);}
  100% {opacity: 1; transform: translateY(0);}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button, .cookie-banner .settings-btn {
  padding: 8px 20px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin: 0 2px;
  border: none;
  outline: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner .accept {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 0.5px 6px rgba(217,107,37,0.19);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #B84F14;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFE8D3;
}
.cookie-banner .settings-btn {
  background: #fff6d4;
  color: var(--brand-primary);
  border: 2px dashed var(--brand-secondary);
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #fff1bb;
}

/**************************
  COOKIE PREFERENCES MODAL
**************************/
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4200;
  background: rgba(34,34,34,0.23);
  justify-content: center;
  align-items: center;
  animation: fadein-modal 0.28s cubic-bezier(.41,1.6,.56,0.89);
}
@keyframes fadein-modal {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 24px 26px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 40px rgba(40,63,46,0.18);
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: scalein-modal 0.32s cubic-bezier(.36,1.42,.52,.93);
}
@keyframes scalein-modal {
  0% {transform: scale(0.82); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-secondary);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 11px 10px;
  background: #FDF9ED;
  border-radius: var(--radius-sm);
  box-shadow: 0 1.5px 3px rgba(217,107,37,0.1);
  font-size: 15px;
}
.cookie-category.essential {
  opacity: 0.76;
  color: #283F2E;
}
.cookie-category .toggle {
  margin-left: auto;
  background: #FFEDCC;
  border-radius: 100px;
  width: 38px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 2px;
  cursor: pointer;
}
.cookie-category .toggle[data-enabled="true"] {
  background: var(--brand-secondary);
}
.cookie-category .toggle .thumb {
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: transform 0.22s, box-shadow 0.10s;
  box-shadow: 0 0.5px 4px rgba(217,107,37,0.12);
  transform: translateX(0);
}
.cookie-category .toggle[data-enabled="true"] .thumb {
  transform: translateX(16px);
  box-shadow: 0 2px 8px rgba(217,107,37,0.21);
}

.cookie-modal-actions {
  margin-top: 25px;
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 20px;
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition),color var(--transition);
}
.cookie-modal-actions .save {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-modal-actions .cancel {
  background: #fff;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--brand-secondary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/************************************
  PLAYFUL ANIMATIONS & EFFECTS
************************************/
.feature img, .season-tab img, .newsletter-signup button[type=submit], .cta.primary, .cta.secondary {
  will-change: transform;
}
/* Fun, bouncy micro-interactions for playful feel */
@media (hover: hover) {
  .cta.primary:active, .cta.secondary:active, .footer-social a:active img {
    transform: translateY(2.5px) scale(0.98) rotate(0.8deg);
  }
}

/**************************
  TYPOGRAPHY HIERARCHY
**************************/
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--brand-secondary);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  margin-top: 0;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  margin-top: 0;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--brand-secondary);
  font-weight: 650;
  margin-bottom: 7px;
}
h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: var(--brand-primary);
  font-size: 17px;
  margin-bottom: 7px;
}
p, li {
  color: var(--brand-primary);
  font-family: 'Roboto',sans-serif;
  font-size: 16px;
  margin-bottom: 7px;
}

/**************************
  UTILITIES
**************************/
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

/**************************
  EXTRAS: FORMS/SEARCH
**************************/
.search-bar {
  display: flex;
  gap: 0;
  align-items: center;
  width: 100%;
  margin-top: 7px;
}
.search-bar input[type=search] {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border: 2px solid #E7DED0;
  padding: 12px 16px;
  font-size: 16px;
  width: 200px;
  background: #fff;
  transition: border var(--transition), box-shadow var(--transition);
}
.search-bar input[type=search]:focus {
  border: 2px solid var(--brand-secondary);
  box-shadow: 0 0 0 4px rgba(217,107,37,0.09);
}
.search-bar button {
  border: 2px solid #E7DED0;
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 18px;
  padding: 11px 22px;
  transition: background var(--transition);
  box-shadow: 0 1.5px 5px rgba(217,107,37,0.13);
}
.search-bar button:hover, .search-bar button:focus {
  background: #B84F14;
}
.search-bar button img {
  width: 20px;
  height: 20px;
}

/**************************
  SCROLLBAR STYLES
**************************/
::-webkit-scrollbar {
  width: 9px;
  background: #fff9ed;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 8px;
  opacity: 0.68;
}

/* End */
