/* =========================================================
   FUMO PULITO - INDUSTRIAL MODERN STYLE - CSS
   ========================================================= */
/* RESET & BASELINE NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #161A1D;
  color: #F5F6F8;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.03em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F2C063;
  letter-spacing: 0.02em;
  margin-top: 0;
}
h1 { font-size: 2.125rem; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
h4, h5, h6 { margin-bottom: 8px; }
p, li, address {
  color: #E0E2E6;
  font-size: 1rem;
}
a {
  color: #F2C063;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffd375;
  text-decoration: none;
}
ul, ol {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
blockquote {
  border-left: 4px solid #F2C063;
  margin: 18px 0;
  padding-left: 18px;
  color: #F2C063;
  font-style: italic;
  background: rgba(60,66,77,0.10);
}

/* ----------------------------------------------------------
   CONTAINERS & SECTIONS
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----------------------------------------------------------
   HEADER NAVIGATION & BURGER MENU
---------------------------------------------------------- */
header {
  background: #232934;
  border-bottom: 2px solid #2A3341;
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 10px;
  height: 70px;
  gap: 24px;
  position: relative;
}
.main-nav a img {
  height: 38px;
  width: auto;
  filter: brightness(0.98) contrast(1.1) drop-shadow(0 0 1.5px #161A1D);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  color: #E0E2E6;
  background: none;
  padding: 8px 12px;
  letter-spacing: 0.04em;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #1D2736;
  color: #F2C063;
}
.nav-cta {
  background: #F2C063;
  color: #183153;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  margin-left: 28px;
  box-shadow: 0 2px 13px 0 rgba(26,34,52,.09);
  transition: background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.nav-cta:hover, .nav-cta:focus {
  background: #FFD375;
  color: #232934;
  box-shadow: 0 4px 20px 0 rgba(242,192,99,0.13);
}
/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 201;
  background: #2A3341;
  border: none;
  color: #F2C063;
  font-size: 2.15rem;
  padding: 8px 9px 5px 9px;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: background .2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F2C063;
  color: #2A3341;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 220;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #15181C;
  background: linear-gradient(120deg,#1D2230 0%,#232934 90%);
  box-shadow: 4px 0 29px 0 rgba(16, 24, 30, .12);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.79,.01,.32,1.01);
  flex-direction: column;
  padding: 26px 14px 14px 30px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F2C063;
  color: #232934;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-right: 8px;
  margin-top: 6px;
  border-radius: 8px;
  cursor: pointer;
  padding: 5px 15px 4px 15px;
  box-shadow: 0 2px 6px rgba(0,0,0, .09);
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD375;
  color: #1D2736;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 34px;
}
.mobile-nav a {
  color: #F2C063;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.22rem;
  padding: 11px 3px 11px 0;
  border-bottom: 1px solid rgba(242,192,99,0.08);
  letter-spacing: 0.07em;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ffd375;
}

@media (max-width: 1000px) {
  .main-nav ul { gap: 15px; }
  .nav-cta { margin-left: 14px; }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------------------------------
   HERO SECTION & ACCENTS
---------------------------------------------------------- */
.hero {
  background: linear-gradient(104deg, #232934 0%, #183153 100%);
  border-bottom: 2px solid #283149;
  padding: 56px 0 36px 0;
  min-height: 265px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #F2C063;
  font-size: 2.25rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 13px #1b1f23e8;
}
.hero p {
  margin: 0 0 24px 0;
  color: #EAEFF6;
  font-size: 1.13rem;
}
.hero .cta-btn {
  margin-top: 8px;
}

/* ----------------------------------------------------------
   BUTTONS & CTA
---------------------------------------------------------- */
.cta-btn, button.cta-btn {
  background: #F2C063;
  color: #232934;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  border: none;
  padding: 12px 30px 13px 30px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 6px 22px 0 rgba(242,192,99,0.09), 0 2px 8px rgba(24,49,83,0.09);
  letter-spacing: 0.07em;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.15s;
  outline: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD375;
  color: #1D2736;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px 0 rgba(242,192,99,0.17), 0 2px 18px rgba(24,49,83,0.13);
}
button[disabled], .cta-btn[disabled] {
  opacity: .48;
  pointer-events: none;
}

/* ----------------------------------------------------------
   FEATURES & CARDS
---------------------------------------------------------- */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid > div {
  flex: 1 1 200px;
  min-width: 240px;
  max-width: 320px;
  background: #212733;
  border-radius: 13px;
  box-shadow: 0 2.5px 24px rgba(28,34,47,0.08), 0 1px 5px rgba(11, 21, 38, 0.09);
  border: 1.8px solid #232934;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.22s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 #181d22c2, 0 2px 18px rgba(242,192,99,0.11);
  transform: translateY(-2.5px) scale(1.015);
}
.feature-grid img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  filter: grayscale(0.15) drop-shadow(0 2px 5px #0b0e13);
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.11rem;
  color: #F2C063;
  margin-bottom: 2px;
}
.feature-grid p {
  color: #CDD2DD;
  margin-bottom: 0;
  font-size: 0.99rem;
}

/* Inline feature-item for lists */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------------------
   CARDS CONTAINERS
---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232934;
  border-radius: 10px;
  box-shadow: 0 2.5px 18px 0 rgba(24,33,51,.09);
  padding: 20px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 5px 26px 0 #1D2736e8, 0 1.5px 12px rgba(242,192,99,0.13);
  transform: translateY(-2.5px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- Section Spacing Pattern --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- Content Grid Pattern --- */
.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) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F5F6F8;
  color: #232934;
  border-left: 7px solid #F2C063;
  margin-bottom: 24px;
  border-radius: 7px;
  box-shadow: 0 1.5px 12px rgba(24,33,51,.07);
  padding: 20px 24px;
  max-width: 410px;
  min-width: 220px;
  position: relative;
  transition: box-shadow .18s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 #1D27361c, 0 1.5px 21px rgba(242,192,99,0.08);
  transform: scale(1.019);
}
.testimonial-card p {
  color: #222633;
  font-size: 1.12rem;
  font-weight: 500;
}
.testimonial-card strong {
  color: #183153;
}
.testimonial-card span {
  color: #F2C063;
  font-size: 1.01rem;
  letter-spacing: 0.09em;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

/* Spacing for generic card/testimonial layouts */
.faq .content-wrapper > div,
.text-section > div {
  margin-bottom: 24px;
}

/* ----------------------------------------------------------
   SERVICES & CONTACT SECTIONS
---------------------------------------------------------- */
.services {
  background: #222733;
  border-radius: 12px;
  margin-bottom: 60px;
  box-shadow: 0 2px 20px 0 rgba(16,24,30,0.11);
}
.services .content-wrapper {
  gap: 20px;
}
.services ul, .services ol {
  color: #E0E2E6;
  font-size: 1rem;
}
.services h2, .services h3 {
  color: #F2C063;
}
.services .cta-btn {
  margin-top: 15px;
}

.contact {
  background: #232934;
  border-radius: 12px;
  box-shadow: 0 3px 20px 0 rgba(16, 24, 30, 0.09);
  margin-bottom: 60px;
}
.contact .content-wrapper {
  gap: 18px;
}
.contact ul, .contact div {
  margin-bottom: 15px;
  line-height: 1.8;
}
.contact ul img, .contact div img {
  vertical-align: middle;
  margin-right: 9px;
  width: 26px;
  height: 26px;
  filter: grayscale(.35) drop-shadow(0 0 1.5px #1d2736);
}
.contact ul li {
  font-size: 1.08rem;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  background: #181C22;
  color: #E0E2E6;
  border-top: 2px solid #232934;
  padding: 36px 0 0 0;
}
footer .container {
  max-width: 1160px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 24px;
}
footer img {
  height: 38px;
  width: auto;
  margin-bottom: 4px;
  filter: grayscale(0.13) drop-shadow(0 1.7px 2px #232934);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  color: #F2C063;
  font-size: 1rem;
  text-decoration: none;
  padding: 2px 0;
  letter-spacing: 0.03em;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ffd375;
}
footer address {
  font-size: .98rem;
  color: #BCC0CA;
  font-style: normal;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   FAQ
---------------------------------------------------------- */
.faq h2 {
  color: #F2C063;
}
.faq .content-wrapper {
  gap: 24px;
}

/* ----------------------------------------------------------
   RESPONSIVE LAYOUT (MOBILE-FIRST)
---------------------------------------------------------- */
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .footer-nav { gap: 13px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 30px 0 22px 0;
    min-height: 140px;
  }
  .hero h1 { font-size: 1.4rem; }
  .feature-grid > div { min-width: 170px; }
  .footer-nav { flex-direction: column; gap: 6px; }
  footer .content-wrapper { gap: 18px; flex-direction: column; align-items: flex-start; }
  .section {
    margin-bottom: 32px;
    padding: 25px 6px;
  }
  .services, .contact {
    margin-bottom: 32px;
    padding: 22px 6px;
  }
  .card-container, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 98%;
    max-width: 100%;
  }
  .container {
    padding: 0 3vw;
  }
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 229;
  width: 100vw;
  background: #232934;
  color: #F2C063;
  box-shadow: 0 -2px 13px #181C22b3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  justify-content: center;
  padding: 22px 24px 19px 24px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform .35s, opacity .24s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  color: #F2C063;
  max-width: 520px;
  margin-right: 18px;
  font-size: .99rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #F2C063;
  color: #232934;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .96rem;
  font-weight: 700;
  padding: 8px 19px;
  border: none;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background .16s, color .15s, box-shadow .13s;
}
.cookie-btn--reject {
  background: #232934;
  color: #F2C063;
  border: 1.7px solid #F2C063;
  margin-left: 6px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD375;
  color: #232934;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #1D2736;
  color: #FFD375;
}
.cookie-btn--settings {
  background: transparent;
  color: #F2C063;
  border: none;
  text-decoration: underline;
  margin-left: 5px;
  padding: 7px 15px 7px 6px;
}
.cookie-btn--settings:hover {
  color: #FFD375;
  background: transparent;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(24, 31, 34, 0.87);
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #F5F6F8;
  color: #232934;
  border-radius: 12px;
  min-width: 340px;
  max-width: 98vw;
  min-height: 200px;
  box-shadow: 0 6px 44px 0 #21272cc0, 0 2px 11px #F2C06344;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 22px;
  animation: cookieModalIn .4s cubic-bezier(.62,.01,.36,1.06) 1;
}
@keyframes cookieModalIn {
  from { transform: translateY(70px) scale(.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #183153;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal-category label {
  color: #232934;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.cookie-toggle {
  width: 44px;
  height: 22px;
  background: #dcdfe4;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  border: 1.5px solid #B6B8C2;
  transition: background .16s;
  display: flex;
  align-items: center;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #232934;
  border-radius: 50%;
  transition: left .16s, background .16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 22px;
  background: #F2C063;
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 11px;
  background: none;
  border: none;
  color: #232934;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color .15s;
  border-radius: 8px;
  padding: 0 9px;
}
.cookie-modal-close:hover {
  color: #F2C063;
  background: #22273311;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 19px 7px 15px 7px; }
  .cookie-banner-message { margin: 0; }
  .cookie-modal { min-width: 96vw; padding: 19px 4vw 21px 4vw; }
}

/* ----------------------------------------------------------
   SCROLLBARS, TRANSITIONS, MISC (Industrial Modern Details)
---------------------------------------------------------- */

::-webkit-scrollbar {
  width: 9px;
  background: #232934;
}
::-webkit-scrollbar-thumb {
  background: #182133;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #183153;
}
::selection {
  background: #F2C063;
  color: #183153;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  border-radius: 6px;
  border: 1px solid #232934;
  padding: 9px 10px;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  background: #202430;
  color: #F5F6F8;
}
input:focus, textarea:focus, select:focus {
  border-color: #F2C063;
  box-shadow: 0 0 0 1.5px #F2C06338;
}

/* ----------------------------------------------------------
   INDUSTRIAL MODERN TYPOGRAPHY (font-family loaded at runtime)
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Open+Sans:400,700&display=swap');

/* Main industrial accent for headings */
h1, h2, h3 {
  text-transform: none;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.018em;
  color: #F2C063;
  text-shadow: 0 1.5px 10px rgba(24,49,83,0.085);
}

/* For urban/industrial card content */
.card, .feature-grid > div, .testimonial-card {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}

/* Subtle metallic accent bar */
.section:not(.hero):not(.services) h2::after  {
  content: '';
  display: block;
  margin-top: 8px;
  width: 38px;
  height: 4px;
  background: linear-gradient(90deg,#F2C063 60%, #B79B2B 100%);
  border-radius: 9px;
  box-shadow: 0 0 9px 0 #F2C06344;
}

/* ----------------------------------------------------------
   MICRO-INTERACTIONS & SHADOWS
---------------------------------------------------------- */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .15s, transform .12s;
  will-change: transform, box-shadow;
}

/* Hover accent for cards and list items */
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 34px 0 #1d273666, 0 2px 38px rgba(242,192,99,0.09);
  transform: scale(1.013) translateY(-2.5px);
}
.feature-grid > div:active { background: #373d4b; }

li {
  margin-bottom: 10px;
}
ul, ol {
  margin-bottom: 19px;
}

/* ----------------------------------------------------------
   MISCELLANEOUS SPACING, Z-INDEX, PREVENT OVERLAPPING
---------------------------------------------------------- */
section, .section {
  position: relative;
  z-index: 0;
}

.card,
.testimonial-card,
.feature-grid > div {
  margin-bottom: 20px;
}
.content-wrapper, .feature-grid, .card-container, .testimonials .content-wrapper {
  gap: 20px;
}

/* Prevent accidental overlap */
.card + .card, .feature-grid > div + div, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* Z-index layering for overlays and navigation */
header, .main-nav { z-index: 40; position: relative; }
.mobile-menu { z-index: 220; }
.cookie-banner { z-index: 229; }
.cookie-modal-overlay { z-index: 260; }

/* ================ END OF CSS ================ */
