/* CSS RESET & BASE ---------------------- */
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 {
  font-size: 16px;
  line-height: 1.5;
  background: #f6f5f3; /* fallback */
  min-height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #063255;
  background: linear-gradient(120deg, #f6f5f3 0%, #e2ebf5 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: #063255;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #F2C230;
  text-decoration: underline;
}

/* BRAND TYPOGRAPHY SCALE ---------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
p, ul, ol, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 1em;
}
blockquote {
  border-left: 4px solid #F2C230;
  padding-left: 20px;
  color: #063255;
  font-style: italic;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
}
.subheadline {
  color: #063255;
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: .85;
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.3rem; }
  h3, .h3 { font-size: 1.1rem; }
  .subheadline { font-size: 1rem; }
}

/* LAYOUT CONTAINERS & FLEXBOX ---------------------- */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(6, 50, 85, 0.13);
  padding: 40px 28px;
  gap: 16px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .text-section {
    padding: 24px 8px;
  }
  .content-wrapper {
    gap: 8px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(120deg, #F6F5F3 80%, #e2ebf5 100%);
  border-radius: 24px 24px 36px 36px;
  box-shadow: 0 3px 18px rgba(6, 50, 85, 0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 3px 18px rgba(6, 50, 85, 0.08);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px rgba(6, 50, 85, 0.17);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
@media (max-width: 768px) {
  .card-container {
    gap: 12px;
  }
  .card {
    padding: 20px 10px;
    border-radius: 10px;
  }
}

.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff0c0;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(6,50,85,0.08);
  min-width: 230px;
  color: #212f37;
  transition: box-shadow 0.2s;
}
.testimonial-info {
  font-size: 1rem; font-style: italic; color: #063255; opacity:.7;
}
.star-rating {
  color: #F2C230;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px rgba(6,50,85,0.16);
  background: #fff7df;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
}

/* HEADER & NAVIGATION ---------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(6, 50, 85, 0.11);
  padding: 0 0 0 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 70px;
  position: relative;
}
header a img { max-height: 44px; margin-right: 20px; }
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex: 1;
  margin-left: 14px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #063255;
  opacity: 0.87;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.15s, background 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #eaf3fa;
  color: #1e6bb8;
}
header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 1000px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 8px 10px 8px 10px;
    min-height: 58px;
  }
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #063255;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 102;
  }
  header .mobile-menu-toggle:hover {
    background: #eaf3fa;
  }
}

/* MOBILE MENU ---------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85vw;
  max-width: 350px;
  background: #fff;
  box-shadow: -13px 0 32px rgba(6, 50, 85, 0.22);
  z-index: 1100;
  padding: 28px 18px 20px 20px;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.76,.04,.28,.87);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #063255;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  align-self: flex-end;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(6,50,85,0.10);
  transition: background 0.2s;
  z-index: 1112;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #eaf3fa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.mobile-nav a {
  border-radius: 8px;
  padding: 13px 9px;
  font-size: 1.04rem;
  color: #063255;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  background: none;
  transition: background 0.23s, color 0.20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eaf3fa;
  color: #F2C230;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* OVERLAY FOR MOBILE MENU */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,50,85,0.12);
  z-index: 1099;
  display: none;
}
.mobile-menu.open + .mobile-menu-overlay {
  display: block;
}

/* BUTTONS ---------------------- */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #063255 67%, #1652a1 100%);
  color: #fff;
  padding: 15px 28px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 16px rgba(6,50,85,0.15);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.24s, transform .16s;
  text-align: center;
  text-decoration: none;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #1652a1 70%, #063255 100%);
  box-shadow: 0 4px 22px rgba(6,50,85,0.23);
  transform: translateY(-2px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 21px;
  border-radius: 10px;
  color: #063255;
  background: #F2C230;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(241,194,48,0.14);
  transition: background 0.19s, color 0.18s, transform .17s;
  text-decoration: none;
  margin-top: 16px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #b79929;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 17px rgba(241,194,48,0.23);
}

/* FEATURE & SERVICE LISTS ---------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 18px 0;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 9px rgba(6,50,85,0.09);
  padding: 22px 17px 17px 17px;
  font-size: 1rem;
  min-width: 180px;
  flex: 1 1 210px;
  color: #063255;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 0;
  align-items: flex-start;
  transition: box-shadow 0.20s, background .18s;
}
.feature-grid li img {
  width: 38px; height: 38px;
  margin-bottom: 8px;
}
.feature-grid li b {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  color: #063255;
}
.feature-grid li:hover {
  box-shadow: 0 3px 18px rgba(241,194,48,0.17);
  background: #fffde4;
}
@media (max-width: 900px) {
  .feature-grid {gap: 12px;}
}
@media (max-width: 650px) {
  .feature-grid {flex-direction: column; gap: 10px;}
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0 12px 0;
}
.service-list li {
  background: #fff;
  border-left: 5px solid #F2C230;
  border-radius: 10px;
  padding: 18px 16px 16px 18px;
  font-size: 1.08rem;
  color: #063255;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-list span {
  display: inline-block;
  color: #063255;
  background: #F2C23033;
  border-radius: 8px;
  padding: 3px 10px;
  margin-left: 8px;
  font-weight: 500;
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.quickfacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.quickfacts-grid > div {
  background: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 1px 6px rgba(6,50,85,0.07);
  flex: 1 1 210px;
  min-width: 160px;
  color: #063255;
  font-weight: 500;
}
@media (max-width: 600px) {
  .quickfacts-grid {
    flex-direction: column;
    gap: 9px;
  }
}

.culinary-highlights ul, .author-highlights ul, .gdpr-policy ul, .quote-carousel, .story-list, .company-details, .legal-notes, .user-agreement {
  margin-bottom: 18px;
}

/* STREETFOOD & STORIES PAGE STYLES ---------------------- */
.story-list, .author-highlights ul {
  padding-left: 0;
  gap: 12px;
}
.story-list li, .author-highlights ul li {
  padding: 6px 0;
}
.quote-carousel blockquote {
  margin-bottom: 10px;
  background: #f6f5f3;
  border-left: 4px solid #F2C230;
  font-size: 1.12rem;
}

/* SERVICE DETAIL GRID (dienstleistungen) */
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.service-detail-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(6,50,85,0.07);
  padding: 22px 16px;
  min-width: 200px;
  flex: 1 1 270px;
  margin-bottom: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.service-detail-grid b {
  color: #063255;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-top: 6px;
}
@media (max-width: 740px) {
  .service-detail-grid {flex-direction: column;gap:12px;}
}

/* CONTACT PAGE - ADDRESS, EMAIL, ETC ---------------------- */
.contact-info, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.address-block, .phone-email-block, .opening-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #063255;
}
.phone-email-block {
  flex-direction: column;
  gap: 8px;
}
.opening-hours img {
  width: 22px;
  height: 22px;
}
@media (max-width: 640px) {
  .contact-info, .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* FOOTER ---------------------- */
footer {
  background: linear-gradient(90deg,#E2EBF5 60%, #F6F5F3 100%);
  padding: 30px 0 10px 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -1px 13px rgba(6,50,85,0.09);
  width: 100%;
  margin-top: 62px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #063255;
}
footer nav a {
  color: #063255;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.8;
  font-size: 1rem;
  padding: 1px 3px;
  border-radius: 4px;
}
footer nav a:hover, footer nav a:focus {
  color: #F2C230;
  background: #eaf3fa;
}
.footer-contact {
  font-size: 0.98rem;
  color: #063255;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.footer-contact div {
  display: flex;
  gap: 6px;
  align-items: center;
  background: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(6,50,85,0.04);
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
@media (max-width: 600px) {
  footer { padding: 16px 0 8px 0; }
  .footer-contact {gap: 5px;}
}

/* COOKIES CONSENT BANNER ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff9e3;
  color: #063255;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 7% 24px 20px;
  box-shadow: 0 -2px 18px rgba(6,50,85,0.13);
  border-radius: 16px 16px 0 0;
  animation: cookieBannerSlide .55s cubic-bezier(.78,.09,.32,1.2);
}
@keyframes cookieBannerSlide {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 2 1 auto;
  font-size: 1rem;
  min-width: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  padding: 13px 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  background: #F2C230;
  color: #063255;
  transition: background 0.17s, color 0.15s, box-shadow .19s;
  box-shadow: 0 1px 8px rgba(241,194,48,0.12);
}
.cookie-btn.accept {
  background: #063255;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #185fb8;
}
.cookie-btn.reject {
  background: #fff;
  color: #063255;
  border: 1.5px solid #F2C230;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffecc1;
}
.cookie-btn.settings {
  background: #F2C230;
  color: #063255;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #b79929;
  color: #fff;  
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 16px 7px 16px 16px;
  }
  .cookie-banner-actions {
    flex-direction: row;
    gap: 9px;
  }
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  background: rgba(6,50,85,0.18);
  position: fixed; z-index: 4001;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade .45s cubic-bezier(.83,.09,.46,1.02);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(6,50,85,0.19);
  padding: 36px 30px 30px 30px;
  max-width: 410px;
  min-width: 270px;
  color: #063255;
  z-index: 4002;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalPop .45s cubic-bezier(.83,.09,.46,1.12);
}
@keyframes cookieModalPop {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #063255;
}
.cookie-category input[type=checkbox] {
  accent-color: #F2C230;
  width: 20px;
  height: 20px;
}
.cookie-category .always {
  font-size: 0.98rem;
  color: #6a7880;
  font-style: italic;
  margin-left: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 19px;
  background: none;
  border: none;
  color: #063255;
  font-size: 2rem;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 7px;
  z-index: 4500;
}
.cookie-modal .modal-close:hover,.cookie-modal .modal-close:focus {
  background: #eaf3fa;
}
.cookie-modal-description {
  font-size: .98rem;
  color: #22406b;
  margin-bottom: 9px;
  opacity: .92;
}
@media (max-width: 600px) {
  .cookie-modal {max-width:96vw;min-width:0;padding: 18px 5vw 18px 5vw;}
}

/* ANIMATIONS, MICRO-INTERACTIONS ---------------------- */
.card, .feature-grid li, .button-primary, .button-secondary, .testimonial-card, .service-detail-grid > div, .cookie-banner, .cookie-modal  {
  transition: box-shadow 0.23s, background 0.18s, transform .18s;
}

/* UTILITY CLASSES ---------------------- */
.text-center { text-align: center !important; }
.mt-0      { margin-top: 0!important; }
.mt-16     { margin-top: 16px!important; }
.mt-32     { margin-top: 32px!important; }
.mb-0      { margin-bottom: 0!important; }
.mb-16     { margin-bottom: 16px!important; }
.mb-32     { margin-bottom: 32px!important; }
.bold      { font-weight: 600!important; }
.accent-text { color: #F2C230!important; }
.dark-text  { color: #063255!important; }
.light-bg   { background: #fff!important; }
.rounded    { border-radius: 12px!important; }
.shadow     { box-shadow: 0 2px 14px rgba(6,50,85,0.09)!important; }

/* HIDE SCROLLBAR FOR MOBILE MENU (OPTIONAL) */
.mobile-menu::-webkit-scrollbar {width: 0;height:0;}

/* SECTION SPECIFIC FLEX LAYOUTS ---------------------- */
.card-content { display: flex; flex-direction: column; justify-content: center; }

/* OVERRIDES FOR PAGE STYLE (CLASSES FROM HTML) ------- */
.culinary-highlights h3, .author-highlights h3, .company-details p b, .legal-notes p b, .gdpr-policy h2 {  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;  }

/* RESPONSIVE/POSITION HELPERS FOR LAYOUT ------------- */
@media (max-width: 650px) {
  .service-list li, .feature-grid li, .country-list, .story-list {
    padding-left: 7px; padding-right:7px;
  }
  .service-list li { font-size:.98rem;}
}


/* GRADIENT MODERN STYLES -------------------------- */
.background-gradient {
  background: linear-gradient(129deg, #F2C230 4%, #fff9e3 30%, #e2ebf5 100%);
}

/* ENHANCED: FOCUS VISIBLE FOR KEYS ------------------- */
a:focus, button:focus, .cookie-btn:focus, .modal-close:focus {
  outline: 3px solid #F2C230;
  outline-offset: 2px;
}

/* NO GRID OR COL COLUMNS USED ANYWHERE - STRICT FLEX!
/* END OF CSS */
