/* CSS RESET & BASE TYPOGRAPHY */
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,
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 {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #2C3A49;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2C3A49;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FCC14A;
  outline: none;
}

/* Set up core typography scale */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
  padding-left: 1em;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}

/* Containers and Layouts */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flexbox Patterns per Spec */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,58,73,0.06);
  position: relative;
  padding: 24px 20px;
  flex: 1 1 270px;
  min-width: 260px;
  transition: box-shadow 0.17s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(44,58,73,0.14);
}
.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: #E1E8ED;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(44,58,73,0.05);
  margin-bottom: 20px;
  color: #2C3A49;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #E1E8ED;
  box-shadow: 0 1px 8px rgba(44,58,73,0.06);
  position: sticky;
  top: 0;
  z-index: 1090;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  min-height: 56px;
  gap: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #2C3A49;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #FCC14A;
  border-bottom: 2px solid #FCC14A;
}
header img {
  height: 38px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 28px;
  background: #2C3A49;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(44,58,73,0.09);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.17s, transform 0.14s;
  margin-left: 18px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FCC14A;
  color: #2C3A49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 14px rgba(44,58,73,0.15);
}

/* Hamburger Menu (Mobile) */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #2C3A49;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  display: none;
  z-index: 1201;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FCC14A;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,58,73,0.96);
  color: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.62,.06,.47,1.58);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FCC14A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 54px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #FCC14A;
  outline: none;
}

/* Tagline styling */
.tagline {
  color: #2C3A49;
  background: #FCC14A22;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 5px;
  font-size: 1.2rem;
  display: inline-block;
  padding: 9px 22px 9px 17px;
  margin-bottom: 14px;
}

/* Feature/Highlight Grids */
.feature-grid, .food-highlight-grid, .team-profiles, .story-snippets, .story-summaries, .featured-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-grid > div, .food-highlight-grid > div, .team-profiles > div, .story-snippets > article, .story-summaries > div, .featured-stories > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(44,58,73,0.08);
  padding: 22px 18px 20px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  transition: box-shadow 0.15s;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.feature-grid > div:hover,
.food-highlight-grid > div:hover,
.team-profiles > div:hover,
.story-snippets > article:hover,
.story-summaries > div:hover,
.featured-stories > div:hover {
  box-shadow: 0 4px 18px rgba(44,58,73,0.15);
}
.feature-grid img, .food-highlight-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 9px;
}

/* Contact & Info Styling */
.contact-info, .contact-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.contact-info p, .contact-fields p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #2C3A49;
}
.contact-info a, .contact-fields a {
  color: #2C3A49;
  border-bottom: 1px dotted #FCC14A;
  transition: border 0.18s;
}
.contact-info a:hover,
.contact-fields a:hover {
  border-bottom: 1px solid #FCC14A;
  color: #FCC14A;
}

/* Quick Facts / Special Lists */
.quick-facts {
  list-style: disc inside none;
  margin-top: 18px;
  margin-bottom: 18px;
}
.quick-facts li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #2C3A49;
}

/* Testimonials & Quotes */
.reader-quotes {
  margin-top: 24px;
}
.reader-quotes h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2C3A49;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 1.12rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2C3A49;
  margin-left: auto;
  opacity: 0.77;
  font-style: italic;
}

/* Footer */
footer {
  border-top: 1px solid #E1E8ED;
  background: #fff;
  padding: 30px 0 18px;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #2C3A49CC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border 0.18s, color 0.18s;
}
.footer-nav a:focus,
.footer-nav a:hover {
  color: #FCC14A;
  border-bottom: 1px solid #FCC14A;
}
.brand-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}
.brand-footer img {
  height: 38px;
  margin-right: 10px;
  margin-bottom: 6px;
}
.brand-footer div p {
  margin-bottom: 8px;
  color: #7A8A98;
}
.brand-footer a {
  color: #2C3A49;
  border-bottom: 1px dotted #FCC14A;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #E1E8ED;
  box-shadow: 0 -2px 16px rgba(44,58,73,0.08);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  padding: 22px 12px 18px 18px;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(.53,.01,.45,1.59);
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 680px;
  font-size: 1rem;
  color: #2C3A49;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-left: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  outline: none;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 9px 22px;
  transition: background 0.17s, color 0.15s, transform 0.14s;
  margin: 0;
  background: #E1E8ED;
  color: #2C3A49;
}
.cookie-btn.accept {
  background: #FCC14A;
  color: #2C3A49;
}
.cookie-btn.reject {
  background: #2C3A49;
  color: #fff;
}
.cookie-btn.settings {
  background: #E1E8ED;
  color: #2C3A49;
}
.cookie-btn:focus,
.cookie-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,58,73,0.77);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.31s cubic-bezier(.4,.2,.2,1);
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(44,58,73,0.15);
  padding: 36px 28px 22px;
  min-width: 298px;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.8rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 7px;
  color: #2C3A49;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 13px;
  background: none;
  border: none;
  color: #2C3A49;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FCC14A;
  outline: none;
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  font-weight: 600;
  color: #2C3A49;
}
.cookie-modal .category-note {
  font-size: 0.96rem;
  color: #7A8A98;
  margin-left: 27px;
  margin-bottom: 8px;
}

/* Responsive Layouts */
@media (max-width: 990px) {
  .container { max-width: 97vw; }
}
@media (max-width: 850px) {
  header .container, .footer-nav {
    gap: 14px;
  }
  .brand-footer { flex-direction: column; align-items: center; }
  .card-container, .content-grid, .feature-grid, .food-highlight-grid, .team-profiles, .story-snippets, .story-summaries, .featured-stories {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container { padding-left: 10px; padding-right: 10px;}
  .section { padding: 32px 6px; }
  .content-wrapper { max-width: 98vw; }
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .food-highlight-grid, .team-profiles, .story-snippets, .story-summaries, .featured-stories {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .brand-footer {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav { flex-direction: column; gap: 12px; margin-bottom: 10px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 10px 18px 10px;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
  }
  .cookie-modal { padding: 24px 10px 16px; min-width: 200px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.09rem; }
  .card, .feature-grid > div, .food-highlight-grid > div, .team-profiles > div, .story-snippets > article, .story-summaries > div, .featured-stories > div {
    padding: 13px 6px 14px 8px;
    font-size: 0.99rem;
    min-width: 150px;
  }
  .cookie-modal { padding: 16px 5px 15px; }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
  }
}

/* Misc. Utility */
::-webkit-scrollbar {
  width: 8px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #E1E8ED;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: #D6DDE3; }

/* Accessibility Focus Styles */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #FCC14A;
  outline-offset: 2px;
}

/* Animation Microinteractions */
a, .btn-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .card, .feature-grid > div, .food-highlight-grid > div, .testimonial-card {
  transition: box-shadow 0.17s, background 0.15s, border 0.14s, color 0.14s, transform 0.13s;
}

/* Hide Mobile Menu on Desktop */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle { display: none !important; }
}

/* Miscellaneous Styles for Specific Elements */
.story-snippets > article a,
.story-summaries > div a {
  font-size: 1rem;
  color: #2C3A49;
  text-decoration: underline;
  transition: color 0.16s;
}
.story-snippets > article a:hover,
.story-summaries > div a:hover {
  color: #FCC14A;
}

.team-philosophy {
  background: #E1E8ED;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
  color: #2C3A49;
  font-size: 1rem;
}
.local-vs-global {
  background: #E1E8ED;
  border-radius: 9px;
  padding: 16px 15px;
  margin-top: 16px;
  color: #2C3A49;
}
.cultural-insights {
  margin-top: 12px;
  background: #E1E8ED;
  border-radius: 9px;
  padding: 13px 15px;
}
.cultural-insights li {
  color: #30414F;
}

/* Prevent content overlapping */
.card, .feature-grid > div, .food-highlight-grid > div, .team-profiles > div, .story-snippets > article, .story-summaries > div, .featured-stories > div, .testimonial-card {
  margin-bottom: 20px;
}
/* All cards and content sections have at least 20px space between them */

/* END OF MINIMALIST THEME CSS */
