/* 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,
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;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100%;
  background: #F4F8F7;
  color: #1A202C;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #276749;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #FFB703;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  max-width: 100%;
  display: block;
}
hr {
  border: none;
  border-bottom: 2px solid #e2e8f0;
  margin: 32px 0;
}

/* TYPOGRAPHY -------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  color: #276749;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #202024;
}
strong {
  font-weight: 700;
}

/* CONTAINERS & WRAPPER ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* HEADER, NAV, LOGO ------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(39,103,73,0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 24px;
}
.logo img {
  height: 54px;
  width: auto;
}

/* MAIN NAVIGATION --------------------------------------------------------- */
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  color: #276749;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 4px 4px 4px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFB703;
  border-bottom: 2.5px solid #FFB703;
}

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  border: none;
  border-radius: 40px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, border 0.18s;
  margin-left: 16px;
  box-shadow: 0px 3px 12px rgba(39,103,73,0.04);
  outline: none;
  gap: 8px;
}
.btn-primary {
  background: #FFB703;
  color: #276749;
  box-shadow: 0px 2px 12px rgba(255,183,3,0.14);
}
.btn-primary:hover, .btn-primary:focus {
  background: #276749;
  color: #fff;
  box-shadow: 0px 7px 20px rgba(39,103,73,0.16);
}

/* HAMBURGER (Mobile Burger Menu) ------------------------------------------ */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #276749;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFB703;
  color: #276749;
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU ------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 100vw rgba(26,32,44,0.12);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #276749;
  position: absolute;
  top: 19px;
  right: 17px;
  cursor: pointer;
  z-index: 1201;
  padding: 7px 11px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFB703;
  color: #276749;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 30px 16px 28px;
  gap: 18px;
}
.mobile-nav a {
  color: #276749;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.19rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 13px 0 13px 2px;
  border-radius: 8px;
  margin-bottom: 3px;
  display: block;
  transition: color 0.15s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #276749;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
}

/* HERO SECTION ------------------------------------------------------------ */
.hero {
  background: #FFB703;
  color: #276749;
  padding: 56px 0 44px 0;
  box-shadow: 0 4px 36px rgba(255,183,3,0.12);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #276749;
  font-size: 2.8rem;
  letter-spacing: -1px;
}
.hero p {
  color: #276749;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero .btn-primary {
  margin-top: 18px;
}

@media (max-width: 600px) {
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* GENERIC SECTIONS -------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 3px 24px rgba(39,103,73,0.07);
}

/* FEATURES, CARDS, GRID --------------------------------------------------- */
.features, .feature-grid, .team-list, .dish-grid, .post-list, .testimonial-row, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 28px;
}
.feature-card, .team-member, .dish-card, .faq-item, article, .card {
  background: #F4F8F7;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 2px 13px rgba(26,32,44,0.06);
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.feature-card img, .team-member img, .dish-card img {
  height: 38px;
  margin-bottom: 8px;
}
.feature-card h3, .team-member h3, .dish-card h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #276749;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature-card p, .team-member p, .dish-card p {
  color: #1A202C;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* TEAM LIST */
.team-list {
  gap: 24px;
  margin-top: 6px;
}
.team-member {
  min-width: 220px;
  max-width: 295px;
  flex: 1 1 240px;
}

/* MENU CATEGORIES & TABS -------------------------------------------------- */
.menu-categories .category-tabs {
  margin-bottom: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.category-tabs button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #276749;
  background: #F4F8F7;
  border: none;
  border-radius: 36px;
  padding: 11px 25px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.category-tabs button:hover, .category-tabs button.active {
  background: #FFB703;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,183,3,0.11);
}

.dish-grid {
  gap: 24px;
}
.dish-card {
  background: #fff;
  border: 2.2px solid #F4F8F7;
  min-width: 220px;
}

/* CTA SECTIONS ------------------------------------------------------------ */
.cta, .newsletter-cta {
  background: #276749;
  color: #fff;
  border-radius: 22px;
  padding: 48px 18px !important;
  margin: 48px 0 0 0;
  box-shadow: 0 3px 14px rgba(39,103,73,0.13);
}
.cta h2, .newsletter-cta h2 {
  color: #fff;
}
.cta-statement, .newsletter-cta p {
  font-size: 1.22rem;
  margin-bottom: 22px;
  color: #FFFDEB;
}
.cta .btn-primary, .newsletter-cta .btn-primary {
  background: #FFB703;
  color: #276749;
  font-size: 1.14rem;
  margin-top: 0;
  margin-left: 0;
}
.cta .btn-primary:hover, .newsletter-cta .btn-primary:hover {
  background: #fff;
  color: #276749;
}

/* TESTIMONIALS (CRITICAL CONTRAST) ---------------------------------------- */
.testimonials, .testimonial-row {
  width: 100%;
}
.testimonial-row {
  gap: 28px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  color: #1A202C;
  box-shadow: 0px 3px 18px rgba(39, 103, 73, 0.09);
  border-radius: 18px;
  padding: 22px 27px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0px 6px 30px rgba(255, 183, 3, 0.13);
}
.testimonial-quote {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.09rem;
  color: #1A202C;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 5px;
}
.testimonial-author {
  font-weight: 800;
  font-size: 1.02rem;
  color: #276749;
}

/* FAQ, TERMS, POLICY ------------------------------------------------------ */
.faq-list, .privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-use {
  margin-top: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(39,103,73,0.10);
  margin-bottom: 20px;
  padding: 18px 23px;
}
.privacy-policy h1, .gdpr-policy h1, .cookies-policy h1, .terms-of-use h1 {
  color: #276749;
  margin-bottom: 16px;
}
.privacy-policy h2, .gdpr-policy h2, .cookies-policy h2, .terms-of-use h2 {
  color: #FFB703;
  margin-bottom: 13px;
  margin-top: 35px;
}
.privacy-policy ul, .gdpr-policy ul, .cookies-policy ul, .terms-of-use ul {
  padding-left: 28px;
  margin-bottom: 16px;
}
.privacy-policy li, .gdpr-policy li, .cookies-policy li, .terms-of-use li {
  list-style: disc;
  margin-bottom: 9px;
  color: #276749;
  font-weight: 500;
}

/* BLOG POSTS -------------------------------------------------------------- */
.latest-posts .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.latest-posts article {
  background: #F4F8F7;
  box-shadow: 0 2px 15px rgba(26,32,44,0.09);
  border-radius: 16px;
  padding: 20px 23px;
  min-width: 210px;
  flex: 1 1 270px;
  transition: box-shadow 0.16s;
}
.latest-posts article:hover {
  box-shadow: 0 4px 24px rgba(255,183,3,0.12);
}
.featured-post {
  background: #FFB703;
  color: #276749;
  border-radius: 12px;
  margin-top: 30px;
  padding: 24px 25px;
  font-size: 1.13rem;
  box-shadow: 0 2px 18px rgba(255,183,3,0.10);
}

/* BLOG CATEGORIES */
.categories .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 17px 0;
}
.category-list li {
  background: #F4F8F7;
  color: #276749;
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 23px;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  margin-bottom: 9px;
  box-shadow: 0 2px 7px rgba(39,103,73,0.05);
}

/* CONTACT & MAP ----------------------------------------------------------- */
.contact-details .text-section ul {
  margin-bottom: 20px;
}
.contact-details .text-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 1.05rem;
  color: #276749;
}
.map-section {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  margin-top: 8px;
}
.hours .text-section p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* THANK YOU PAGE ---------------------------------------------------------- */
.thank-you .confirmation-message ul {
  padding-left: 23px;
}
.thank-you .confirmation-message li {
  list-style: disc;
  margin-bottom: 10px;
}

/* FOOTER ------------------------------------------------------------------ */
footer {
  background: #fff;
  padding: 32px 0 10px 0;
  border-top: 6px solid #FFB703;
  box-shadow: 0px -2px 16px rgba(39,103,73,0.05);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 48px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #276749;
  font-weight: 700;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FFB703;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #1A202C;
  margin-bottom: 7px;
}
.footer-social {
  display: flex;
  gap: 13px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #F4F8F7;
  justify-content: center;
  transition: background 0.15s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #FFB703;
}
.footer-social img {
  width: 20px;
  height: 20px;
}

/* LAYOUT UTILS ------------------------------------------------------------ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* SPACING & GEOMETRIC ELEMENTS -------------------------------------------- */
.content-wrapper > * + * {
  margin-top: 20px;
}

/* BUTTON ANIMATION & INTERACTIVITY ---------------------------------------- */
.btn, .category-tabs button, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
}
.btn:active, .category-tabs button:active {
  transform: scale(0.98);
}

/* SHADOWS & ROUNDED ------------------------------------------------------- */
.feature-card, .dish-card, .testimonial-card, .card, .faq-item, .newsletter-cta, .cta {
  box-shadow: 0px 3px 18px rgba(39,103,73,0.07);
  border-radius: 22px;
}

/* RESPONSIVE DESIGN ------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .feature-grid, .dish-grid, .testimonial-row, .post-list, .team-list, .card-container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 15px;
    padding-right: 15px;
  }
  .section, .cta, .newsletter-cta {
    padding: 38px 5px !important;
  }
  .main-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .feature-grid, .dish-grid, .testimonial-row, .team-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .cta, .newsletter-cta {
    border-radius: 15px;
    padding: 28px 3px !important;
  }
  .footer-brand img {
    height: 34px;
  }
}
@media (max-width: 480px) {
  .hero .container {
    padding: 0 7px;
  }
  .container {
    max-width: 97vw;
    padding: 0 7px;
  }
  header .container {
    min-height: 58px;
  }
  .logo img {
    height: 38px;
  }
}

/* COOKIE CONSENT BANNER --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #1A202C;
  box-shadow: 0 -2px 19px rgba(26,32,44,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 32px;
  z-index: 2000;
  transition: transform 0.33s cubic-bezier(.72,0,.34,1);
  font-size: 1.09rem;
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner__text {
  flex: 1 1 65%;
  color: #276749;
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  flex: 1 1 35%;
  justify-content: flex-end;
}
.cookie-banner__btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 15px;
  padding: 9px 23px;
  cursor: pointer;
  background: #F4F8F7;
  color: #276749;
  outline: none;
  transition: background 0.18s, color 0.14s;
}
.cookie-banner__btn.accept {
  background: #FFB703;
  color: #276749;
}
.cookie-banner__btn.reject {
  background: #EC5D67;
  color: #fff;
}
.cookie-banner__btn.settings {
  background: #276749;
  color: #fff;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  opacity: 0.92;
  border: 1.8px solid #FFB703;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 7px 22px 13px;
    font-size: 0.91rem;
    gap: 8px;
  }
  .cookie-banner__actions {
    gap: 9px;
    width: 100%;
  }
}

/* COOKIE BANNER MODAL ----------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,32,44,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: cookie-overlay-in 0.27s;
}
@keyframes cookie-overlay-in {
  from { opacity: 0 }
  to   { opacity: 1 }
}
.cookie-modal {
  background: #fff;
  width: 95vw;
  max-width: 440px;
  border-radius: 22px;
  box-shadow: 0 7px 35px rgba(39,103,73,0.20);
  padding: 36px 22px 27px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.33s cubic-bezier(.61,0,.24,1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(75px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #276749;
  margin-bottom: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: 1.55rem;
  color: #276749;
  background: none;
  border: none;
  padding: 3px 7px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F4F8F7;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-modal-category__label {
  font-weight: 700;
  color: #276749;
  font-size: 1.08rem;
}
.cookie-modal-category__description {
  font-size: 0.96rem;
  color: #1A202C;
  margin-bottom: 3px;
  font-weight: 500;
}
.cookie-switch {
  appearance: none;
  background: #F4F8F7;
  border-radius: 18px;
  width: 41px;
  height: 22px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  border: 1.5px solid #DDD;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #FFB703;
  border-color: #FFB703;
}
.cookie-switch:before {
  content: "";
  display: block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 1.1px;
  transition: left 0.17s;
  box-shadow: 0 1px 5px rgba(26,32,44,0.10);
}
.cookie-switch:checked:before {
  left: 21px;
}

/* Cookie modal action buttons */
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-banner__btn {
  margin-left: 0;
  padding: 8px 14px;
}

/* STICKY Z-INDEXES -------------------------------------------------------- */
header {
  z-index: 1100;
}
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 2002;
}

/* UTILITY --------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* GEOMETRIC DECOR [EXAMPLE FOR CARDS] ------------------------------------- */
.feature-card:after {
  content: '';
  display: block;
  position: absolute;
  right: 14px; bottom: 12px;
  width: 26px; height: 26px;
  background: #FFB703;
  border-radius: 50%;
  opacity: 0.11;
  z-index: 1;
}

.dish-card:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px; top: 8px;
  width: 18px; height: 18px;
  background: #276749;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

@media (max-width: 600px) {
  .feature-card:after,
  .dish-card:after { display: none; }
}
