/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #232527;
  color: #e7e6e1;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.04em;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #FFF5E1;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #9C563B;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFF5E1;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
}
.subheadline {
  font-size: 1.15rem;
  color: #bcbcbc;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
}
strong {
  color: #9C563B;
  font-weight: 700;
}

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(38,40,42,0.97);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.17), 0 1.5px 0 #616161 inset;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #282B2F;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,46,48,0.15);
  border: 1px solid #353535;
  position: relative;
  transition: box-shadow 0.24s cubic-bezier(.41,.1,.51,1);
}
.card:hover {
  box-shadow: 0 8px 24px #24252544, 0 2px 0 #9C563B inset;
  border-color: #9C563B;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  gap: 12px;
}

.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: #fcfcfb;
  color: #232527;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(80,80,80,0.08);
  margin-bottom: 20px;
  flex: 1 1 330px;
  min-width: 260px;
}
.testimonial-card span {
  color: #4B5320;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* BUTTONS & INTERACTIONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4B5320;
  color: #FFF5E1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 32px;
  padding: 13px 36px;
  box-shadow: 0 1.5px 3px rgba(0,0,0,0.13);
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 7px;
  text-shadow: 0 1px 0 #282B2F;
  transition: background 0.25s, color 0.22s, box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #9C563B;
  color: #FFF5E1;
  box-shadow: 0 3.5px 15px #9C563B44, 0 1.5px 0 #4B5320 inset;
  outline: none;
}

/* HEADER & NAVBAR */
header {
  background: #17181a;
  border-bottom: 3px solid #303030;
  box-shadow: 0 2px 16px rgba(50,52,57,0.08);
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 78px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #e7e6e1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 8px;
  border-radius: 3.5px;
}
header nav a:hover, header nav a:focus {
  color: #9C563B;
  background: #272828;
}
header img {
  height: 38px;
  width: auto;
}
header .btn-primary {
  margin: 0 0 0 18px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #FFF5E1;
  background: none;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.22s;
  z-index: 222;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2c2e31;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232527;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.55,.08,.55,1);
  z-index: 999;
  box-shadow: 2px 0 20px rgba(34,34,34,0.28);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #FFF5E1;
  border: none;
  margin: 25px 25px 0 0;
  cursor: pointer;
  /* metallic shine effect */
  text-shadow: 0 1.5px 6px #4B532040;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #9C563B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 50px 30px 0 40px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF5E1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  padding: 12px 0;
  border-bottom: 1px solid #353535;
  border-radius: 0;
  transition: background 0.19s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #292A2D;
  color: #9C563B;
}

/* MAIN & HERO */
main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
}

/* LISTS & CATEGORIES */
ul, li {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.7;
}
ul {
  padding-left: 0;
  margin-bottom: 10px;
}
li {
  padding-left: 0;
  color: #e7e6e1;
}
.category-nav, .region-nav, .filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: #AAA;
  font-size: 1rem;
}
.category-nav a, .region-nav a, .filters a {
  color: #e7e6e1;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 7px;
  transition: background 0.2s, color 0.19s;
}
.category-nav a:hover, .region-nav a:hover, .filters a:hover {
  background: #4B5320;
  color: #FFF5E1;
}
/* Small tips and callouts */
.tips-snippet, .featured-recipes, .country-highlights, .quick-facts, .chef-tips,
.time-savers, .garnish-ideas, .color-palettes, .press-mentions {
  background: #282B2F;
  border-left: 5px solid #4B5320;
  border-radius: 10px;
  padding: 13px 22px;
  margin: 20px 0 0 0;
  color: #FFF5E1;
  box-shadow: 0 1.5px 4px #3030301c;
}
.tips-snippet p, .time-savers p, .chef-tips p, .press-mentions p, .color-palettes p {
  color: #e7e6e1;
  font-size: 1.04rem;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.search-bar input[type="search"] {
  width: 100%;
  background: #232527;
  border: 1.5px solid #4B532052;
  padding: 12px 20px;
  font-size: 1.04rem;
  color: #FFF5E1;
  border-radius: 32px;
  outline: none;
  box-shadow: 0 1px 6px #30303012;
  transition: border 0.18s;
}
.search-bar input[type="search"]:focus {
  border: 1.5px solid #9C563B;
}

/* RECIPE LIST / CARDS */
.recipe-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.recipe-list li {
  background: #222325;
  border-left: 4px solid #9C563B;
  border-radius: 7px;
  color: #FFF5E1;
  padding: 10px 16px;
  box-shadow: 0 1px 5px #29292b28;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
}
.recipe-list li strong {
  color: #FFF5E1;
}

/* MAP & CONTACT */
.brand-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.brand-contact-info ul {
  margin-bottom: 10px;
}
.brand-contact-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.brand-contact-info img {
  width: 21px;
  height: 21px;
  opacity: 0.88;
}
.map { 
  font-size: 1.02rem;
  color: #FFF5E1;
}
.cta-banner {
  margin-top: 18px;
  padding: 13px 0;
}
.cta-banner .btn-primary {
  margin: 0;
}

/* CARDS: VISUAL ELEMENTS */
.featured-recipes ul, .garnish-ideas ul {
  margin: 8px 0 0 0;
  padding-left: 0;
}
.featured-recipes li, .garnish-ideas li {
  color: #FFE7C2;
  font-weight: 500;
  margin-bottom: 7px;
}
.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0;
  justify-content: flex-start;
}
.region-grid > div {
  background: #242628;
  color: #FFF5E1;
  padding: 16px 20px;
  border-left: 4px solid #4B5320;
  border-radius: 7px;
  font-size: 1.06rem;
  box-shadow: 0 1.5px 6px #2c2c2e13;
  min-width: 180px;
  flex: 1 1 220px;
}

/* FOOTER */
footer {
  background: #1A1D1E;
  border-top: 3px solid #4B5320;
  margin-top: 60px;
  padding: 38px 0 0 0;
  color: #DDD;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-main img {
  height: 33px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-main nav a {
  color: #DDD;
  font-size: 1rem;
  margin-bottom: 1px;
  transition: color 0.17s;
}
.footer-main nav a:hover {
  color: #FFF5E1;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 16px;
}
.footer-legal a {
  color: #6d7475;
  font-size: 0.97rem;
}
.footer-contact {
  margin: 13px 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  color: #cecbc3;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  opacity: 0.78;
}
.footer-social {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  filter: grayscale(40%) brightness(1.15);
  opacity: 0.95;
  transition: opacity 0.17s, filter 0.22s;
}
.footer-social a img:hover {
  filter: grayscale(0%) brightness(1.36) drop-shadow(0 2px 8px #4B532066);
  opacity: 1;
}
.footer-credits {
  border-top: 1.5px solid #22401a44;
  margin-top: 12px;
  text-align: center;
  padding: 14px 0 0 0;
  color: #a4a49a;
  font-size: 1rem;
}

/* SOCIAL FOLLOW US */
.follow-us-social {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}
.follow-us-social p {
  font-size: 1.03rem;
  color: #FFF5E1;
  margin-bottom: 0;
}
.follow-us-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.94;
  margin-right: 2px;
  filter: grayscale(60%) brightness(1.15);
  transition: filter 0.17s;
}
.follow-us-social a img:hover {
  filter: grayscale(0%) brightness(1.25) drop-shadow(0 1.5px 8px #9C563B33);
  opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.press-mentions {
  margin-top: 32px;
  color: #FFF5E1;
  font-size: 1.05rem;
}

/* MODALS AND BANNERS */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #232527;
  color: #FFF5E1;
  border-top: 3px solid #4B5320;
  z-index: 2000;
  box-shadow: 0 -4px 22px #23262775;
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: cookieBannerSlideUp 0.6s cubic-bezier(.35,.78,.19,1) 1;
}
@keyframes cookieBannerSlideUp {
  from {transform: translateY(110%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 26px;
  max-width: 1220px;
  margin: 0 auto;
}
.cookie-banner-message {
  font-size: 1rem;
  color: #FFF5E1;
  flex: 1 1 0%;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cookie {
  background: #4B5320;
  color: #FFF5E1;
  border: none;
  border-radius: 28px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin: 0 3px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.22s, color 0.15s;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #9C563B;
  color: #FFE7C2;
}
.btn-cookie.btn-cookie-settings {
  background: #282B2F;
  color: #FFD4A7;
  border: 1.5px solid #303030;
}
.btn-cookie.btn-cookie-settings:hover {
  background: #23283e;
  color: #FFF5E1;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 27, 30, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.34s cubic-bezier(.35,.78,.19,1) 1;
}
@keyframes cookieModalIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #222325;
  border: 2.3px solid #4B5320;
  border-radius: 22px;
  padding: 36px 32px 26px 32px;
  color: #FFF5E1;
  box-shadow: 0 12px 48px #17171a99;
  min-width: 330px;
  max-width: 97vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: #FFF5E1;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 13px;
  color: #FFE7C2;
}
.cookie-modal input[type="checkbox"],
.cookie-modal input[type="radio"] {
  accent-color: #4B5320;
  width: 19px; height: 19px;
  margin-right: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
}
.cookie-modal .btn-cookie {
  padding: 9px 22px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  color: #FFF5E1;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  z-index: 1;
  opacity: 0.85;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #9C563B;
  opacity: 1;
}
.cookie-modal .category-always-on {
  opacity: 0.7; font-style: italic; font-size: 0.98em;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container { max-width: 960px; }
  .cookie-banner-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-main { flex-direction: column; gap: 19px; align-items: flex-start; }
  .footer-main nav, .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 12px 17px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding: 0 7px;
  }

  header .container { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0; }
  header nav { display: none; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  main, section {
    padding: 17px 0 13px 0;
    margin-bottom: 39px;
  }
  section {
    border-radius: 10px;
    padding: 26px 9px 23px 9px;
  }
  .content-wrapper { gap: 16px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 14px; min-width: 170px; }
  .testimonials { gap: 12px; flex-direction: column; }
  .region-grid { flex-direction: column; gap: 10px; }
  .footer-main { gap: 13px; }
  .footer-social { gap: 9px; }
  .cookie-modal { min-width: 95vw; padding: 19px 2vw 15px 2vw; }
  .cookie-banner-inner { padding: 14px 6px; }
  .brand-contact-info { gap: 8px; }
  .category-nav, .region-nav, .filters { gap: 5px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.06rem; }
  .btn-primary, .btn-cookie {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
  .footer-main img { height: 26px; }
}

/* MICRO-INTERACTIONS */
.btn-primary, .btn-cookie {
  transition: box-shadow 0.17s, background 0.18s, color 0.16s, transform 0.14s;
}
.btn-primary:active, .btn-cookie:active {
  transform: scale(0.98);
  box-shadow: 0 2px 2px #23232740 inset;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s;
}
.card:focus-within, .card:hover, .testimonial-card:hover {
  box-shadow: 0 4.5px 27px #4B532044;
  border-color: #9C563B;
}
input[type="search"], input, textarea {
  transition: border 0.15s, box-shadow 0.12s;
}
input[type="search"]:focus {
  border-color: #9C563B;
  box-shadow: 0 1px 6px #9C563B44;
}

/* VISUAL METALLIC-INDUSTRIAL MODERN ACCENTS */
header, .btn-primary, .btn-cookie, .section, .card, .testimonial-card,
footer, .search-bar input, .cookie-modal {
  border-radius: 14px;
  /* Subtle border & shadow for metallic accent */
  box-shadow: 0 1.5px 12px #61616123, 0 1.5px 0 #39393919 inset;
}
.section {
  border: 1.6px solid #47494b;
}
.card {
  border: 1.5px solid #3a3d3f;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
  background: #1A1D1E;
}
::-webkit-scrollbar-thumb {
  background: #323437;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: #4B5320; }

/* OVERRIDES AND ACCESSIBILITY */
:focus-visible {
  outline: 2.5px solid #9C563B;
  outline-offset: 2px;
}
[aria-label], [title], .btn-primary, .btn-cookie, .mobile-menu-toggle {
  cursor: pointer;
}

/* ENSURE PROPER Z-INDEX & NO OVERLAP FOR KEY ELEMENTS */
header { z-index: 80; }
.mobile-menu { z-index: 999; }
.cookie-banner, .cookie-modal-overlay { z-index: 2000; }

/* HIDE / SHOW logics managed by JS, but safe defaults */
.mobile-menu { visibility: hidden; }
.mobile-menu.open { visibility: visible; }

/* END OF CSS */
