/* ===========================================================
   FrankfurtFoodLab 'Monochrome Sophisticated' CSS Theme
   Author: Professional Senior CSS Developer & UI Designer
   Prereqs: Only flexbox layouts, mobile-first, no grid/columns
   Brand: Montserrat (display), Roboto (body)
   =========================================================== */

/* ===== 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  background: #fff;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #181818;
  background: none;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #12294C;
  text-decoration: underline;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1.3em;
  margin-bottom: 1.2em;
}

/* ====== TYPOGRAPHY HIERARCHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, li {
  color: #222;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #101010;
}
.subheadline {
  font-size: 1.18rem;
  color: #444;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.thanks-message, .expert-quotes p {
  font-size: 1.15rem;
  color: #283140;
  padding: 16px 0 10px 0;
  font-style: italic;
}

/* ================ LAYOUT CONTAINERS ================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== FLEXBOX UTILITY CLASSES (MANDATORY) ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 24px rgba(20,20,20,0.04), 0 1.5px 4px rgba(0,0,0,0.05);
  padding: 32px 24px;
  min-width: 260px;
  min-height: 120px;
  transition: box-shadow 0.23s cubic-bezier(0.4,0,0.2,1), transform 0.23s cubic-bezier(0.4,0,0.2,1);
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(20,20,20,0.14), 0 6px 16px rgba(0,0,0,0.13);
  transform: translateY(-5px) scale(1.02);
}
.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: #f8f8f9;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card p {
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HERO & CTA ===== */
.hero {
  background: #fff;
  padding: 64px 0 40px 0;
  margin-bottom: 0;
}
.hero .container {
  align-items: flex-start;
}
.cta {
  background: #f3f3f7;
  border-top: 1px solid #e7e7ea;
  padding: 46px 0 36px 0;
}
.cta .cta-btn {
  margin-top: 25px;
}

/* ===== FEATURE GRID & CARDS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
}
.feature {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1.5px 7px rgba(0,0,0,0.06);
  padding: 28px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 3px solid #222;
  transition: box-shadow 0.19s, border-color 0.2s;
}
.feature img {
  max-width: 40px;
  height: auto;
  margin-bottom: 6px;
  filter: grayscale(60%) contrast(120%);
}
.feature:hover {
  box-shadow: 0 6px 24px rgba(20,20,30,0.19);
  border-left: 3px solid #12294C;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.team-member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(0,0,0,0.08);
  padding: 26px 18px 16px 18px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 3px solid #f5f5f5;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.team-member:hover {
  box-shadow: 0 7px 22px 0 rgba(0,0,0,0.13);
  border-left: 3px solid #12294C;
}

/* =========== BUTTONS, CTAs & LINK STYLES =========== */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 13px 36px;
  border-radius: 32px;
  background: #111;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.19s cubic-bezier(0.39,0,0.51,1), color 0.21s, box-shadow 0.23s, transform 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #12294C;
  color: #fff;
  box-shadow: 0 6px 24px rgba(20,20,25,0.18), 0 1.5px 4px rgba(0,0,0,0.09);
  transform: translateY(-2px) scale(1.03);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.2s, transform 0.18s;
  outline: none;
}
button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover,
button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  background: #12294C;
  color: #fff;
  transform: scale(1.05);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  border-bottom: 1.5px solid #eee;
  box-shadow: 0 2.5px 12px 0 rgba(30,30,32,0.025);
  padding: 0;
  min-height: 62px;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
  margin-right: 1px;
  padding: 7px 8px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.13s, background 0.19s;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #12294C;
}

header img {
  height: 48px;
  width: auto;
  vertical-align: middle;
  margin-right: 18px;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  color: #eee;
  padding: 36px 0 22px 0;
  border-top: 1px solid #19191e;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
footer nav a {
  color: #d2d2d2;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  padding: 3px 9px;
  border-radius: 4px;
  transition: background 0.15s, color 0.13s;
}
footer nav a:hover {
  background: #fff;
  color: #111;
}
footer p {
  color: #bdbdbd;
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ================== CONTACT & MISC ================== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.contact-details > div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
}
.contact-details img {
  height: 28px;
  width: 28px;
  filter: grayscale(60%) brightness(0.45);
}
.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 15px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 8px;
  border: 1px solid #eaeaea;
  transition: background 0.15s, box-shadow 0.16s;
}
.social-links a:hover {
  background: #ececec;
  box-shadow: 0 7px 16px 0 rgba(0,0,0,0.08);
}
.social-links img {
  width: 22px;
  height: 22px;
}
.map p {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f6f8;
  border-radius: 7px;
  padding: 8px 13px;
  font-size: 1rem;
  color: #181818;
}
.map img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  filter: grayscale(80%) brightness(0.74);
}

.text-section ul {
  list-style: disc inside;
  margin-left: 1em;
  margin-bottom: 1.1em;
}
.text-section h3 {
  font-size: 1.05rem;
  margin-top: 16px;
  font-weight: 600;
}

/* =============== HAMBURGER / MOBILE NAVIGATION =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 104;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 2px solid #222;
  color: #222;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 1.9rem;
  transition: background 0.16s, color 0.13s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #181818;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 88vw;
  max-width: 338px;
  height: 100vh;
  background: #181818;
  box-shadow: -2px 0 16px rgba(0,0,0,0.2);
  z-index: 105;
  padding: 30px 26px 24px 26px;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.75,.05,.36,.94), box-shadow 0.24s;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: -8px 0 32px rgba(0,0,0,0.28);
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 24px;
  background: #222;
  color: #fff;
  border: none;
  padding: 7px 17px;
  border-radius: 34px;
  font-size: 1.25rem;
  z-index: 108;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  color: #fff;
  padding: 12px 0 10px 0;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #12294C;
}

/* Overlay background when mobile menu open */
body.menu-open::after {
  content: "";
  position: fixed;
  z-index: 104;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,34,40,0.56);
  pointer-events: auto;
  transition: opacity 0.32s;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 960px) {
  header .container nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Show desktop nav back only on bigger screens */
@media (min-width: 961px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header .container nav {
    display: flex !important;
  }
  .cta-btn {
    display: inline-block !important;
  }
}

/* ========== COOKIE CONSENT BANNER (FIXED BOTTOM) ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #181818;
  box-shadow: 0 -2px 12px rgba(15,15,30,0.17);
  color: #222;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 2.1em 8vw 2em 8vw;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.34s, opacity 0.25s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-text {
  flex: 1 1 320px;
  color: #222;
  max-width: 80vw;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  border-radius: 24px;
  padding: 11px 23px;
  border: none;
  margin: 0 2px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.17s, transform 0.15s;
}
.cookie-consent-btn.accept {
  background: #12294C;
  color: #fff;
}
.cookie-consent-btn.accept:hover, .cookie-consent-btn.accept:focus {
  background: #181818;
  color: #fff;
}
.cookie-consent-btn.reject {
  background: #fff;
  color: #111;
  border: 1.1px solid #111;
}
.cookie-consent-btn.reject:hover {
  background: #111;
  color: #fff;
}
.cookie-consent-btn.settings {
  background: transparent;
  color: #222;
  border: 1.1px solid #222;
}
.cookie-consent-btn.settings:hover {
  background: #f8f8f8;
  color: #12294C;
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(1);
  min-width: 340px;
  max-width: 98vw;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 15px 40px 10px rgba(28,32,38,0.28);
  z-index: 10010;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.23s, transform 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -30%) scale(0.94);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #10121a;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  cursor: pointer;
  padding-right: 10px;
  color: #181818;
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 14px;
  background: #e2e3e9;
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
  transition: background 0.19s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: #12294C;
}
.cookie-modal .cookie-thumb {
  position: absolute;
  top: 3px; left: 4px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .cookie-thumb {
  left: 19px;
}
.cookie-modal .essential {
  font-weight: 600;
  color: #111;
  opacity: 0.86;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 28px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 34px;
  font-size: 1.3rem;
  padding: 5px 13px 5px 13px;
  z-index: 102;
}
.cookie-modal .cookie-modal-close:hover {
  background: #12294C;
}
.cookie-modal .modal-actions button {
  font-size: 1.03rem;
  padding: 12px 28px;
  border-radius: 23px;
  border: none;
  font-weight: 600;
  transition: background 0.16s, color 0.12s;
  cursor: pointer;
}
.cookie-modal .modal-actions .save {
  background: #12294C;
  color: #fff;
}
.cookie-modal .modal-actions .save:hover {
  background: #222;
}
.cookie-modal .modal-actions .cancel {
  background: #fff;
  color: #111;
  border: 1px solid #181818;
}
.cookie-modal .modal-actions .cancel:hover {
  background: #f8f8f9;
}
/* Modal overlay shadow */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30,32,40,0.34);
  z-index: 10009;
}

/* ======= SPACING BETWEEN ALL BLOCKS ======= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
main > section {
  border-bottom: 1px solid #eeeeee;
}
main > section:last-child {
  border-bottom: none;
}

/* ============ RESPONSIVE DESIGN (MOBILE FIRST) ============ */
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .container { padding: 0 6vw; }
  .hero { padding: 36px 0 24px 0; }
  section { padding: 25px 0 20px 0; }
  .feature-grid, .team-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  footer { padding: 28px 0 13px 0; }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 1.1em 4vw 1.2em 4vw;
    font-size: 1rem;
  }
  .cookie-modal { padding: 24px 11px 21px 13px; min-width: 195px; }
}
@media (max-width: 500px) {
  .hero { padding: 26px 0 15px 0; }
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
  .container { padding: 0 2vw; }
  .feature, .team-member, .card {
    min-width: 0;
    padding: 14px 8px;
  }
  .cookie-modal { min-width: 0; }
}

/* =============== ACCESSIBILITY =============== */
:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}
::-webkit-input-placeholder, ::placeholder {
  color: #999;
  opacity: 1;
}

/* ============ MISCELLANEOUS OVERRIDES ============ */
img { max-width: 100%; display: block; border-radius: 5px; }
hr { border: none; border-bottom: 1px solid #eaeaea; margin: 18px 0; }
blockquote {
  border-left: 3.5px solid #12294C;
  padding-left: 13px;
  color: #222;
  background: #f5f7fa;
}

.card, .testimonial-card, .feature, .team-member {
  box-shadow: 0 1.5px 10px rgba(0,0,0,0.07);
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff;
}

main li {
  margin-bottom: 10px;
  padding-left: 0.3em;
}

/* ============= MONOCHROME EFFECTS WITH BRAND ACCENTS ============= */
body, html {
  background: #f7f7fb;
  color: #181818;
}
header, .hero, .card, .feature, .testimonial-card, .team-member, .cookie-modal {
  background: #fff;
}
.cta, .footer {
  background: #111 !important;
  color: #fff !important;
}

.cta p, .cta h2 {
  color: #fff !important;
}

/* =============== SHADOWS AND MICRO-ANIMATIONS =============== */
.card, .testimonial-card, .feature, .team-member {
  transition: box-shadow 0.21s, transform 0.22s;
}
.card:hover, .testimonial-card:hover, .feature:hover, .team-member:hover {
  box-shadow: 0 7px 24px rgba(20,20,20,0.18), 0 1.5px 9px rgba(0,0,0,0.06);
  transform: translateY(-3px) scale(1.015);
}

/* =============== Z-INDEX & LAYERED EFFECTS =============== */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal { z-index: 10010; }

/* ========== REMOVE FORBIDDEN PROPERTIES ==========
NO display:grid, grid-*, columns, column-count etc. used! */
