/* ====================== 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #faf7ef;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #33312a;
  background: #fff8ec;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header, footer, nav, main, section, article, aside {
  display: block;
}

ul, ol {
  list-style: none;
  padding: 0;
}
a {
  color: #23395d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b0673b;
  outline: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* =============== VINTAGE RETRO COLOR + TYPOGRAPHY SCHEME =============== */
:root {
  --primary: #23395d;                /* brand blue */
  --secondary: #5ebd8a;              /* minty green */
  --accent: #fff8ec;                 /* warm white */
  --retro-gold: #e9c46a;
  --retro-orange: #b0673b;
  --retro-brown: #795548;
  --retro-bg: #faf3e6;
  --retro-red: #c94f4f;
  --retro-blue: #6b8ca4;
  --retro-shadow: rgba(50,40,20,0.07);
}

body {
  background: var(--accent);
  color: #33312a;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #fff2d3;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: 1.8px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--retro-orange);
  text-shadow: 0 1px 0 #ffe3bc;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--retro-brown);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p, li, strong, label {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #312c23;
}
strong {
  font-weight: bold;
}

/* ===================== GLOBAL LAYOUT CONTAINER ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== HEADER WITH RETRO ELEMENTS ===================== */
header {
  background: var(--retro-gold);
  border-bottom: 7px double var(--retro-orange);
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 12px var(--retro-shadow);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 10px;
  border-radius: 4px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--retro-orange);
  color: #fff;
}
header a.btn-primary {
  margin-left: 18px;
}
header img {
  height: 48px;
  width: auto;
}

/* ===================== PRIMARY BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--retro-orange);
  color: #fffbe8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 30px;
  box-shadow: 0 3px 0 0 #c38d5c, 0 8px 24px var(--retro-shadow);
  padding: 12px 36px;
  letter-spacing: 1px;
  cursor: pointer;
  text-shadow: 0 1px 0 #ce9a58;
  transition: background 0.22s, box-shadow 0.15s, transform 0.11s;
  margin-top: 12px;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-brown);
  color: #fffde5;
  box-shadow: 0 2px 0 0 #8c6741, 0 12px 28px var(--retro-shadow);
  transform: translateY(-1px) scale(1.04);
}

/* =========== HERO SECTION RETRO =========== */
.hero {
  background: repeating-linear-gradient(135deg, var(--retro-gold) 0 18px, var(--accent) 18px 36px);
  border-bottom: 7px double var(--primary);
  padding: 0;
}
.hero .container {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 50px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 2px 0 #fff2d3;
}
.hero p {
  max-width: 660px;
  color: #312c23;
  font-size: 1.18rem;
  background: rgba(255, 248, 236, 0.78);
  border-left: 7px solid var(--retro-brown);
  padding: 14px 16px;
  border-radius: 0 22px 22px 0;
  margin: 0 0 8px 0;
}

/* ================== RETRO PATTERNS AND SECTIONS ================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-bg);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--retro-shadow);
  border: 3px dashed var(--retro-orange);
  position: relative;
}
.section:last-child { margin-bottom: 0; }

.cta.section, section.cta {
  background: var(--secondary);
  border: 3px solid var(--retro-orange);
  margin-bottom: 0;
  color: var(--primary);
}
section.cta .btn-primary {
  margin-bottom: 18px;
  margin-top: 0;
  background: var(--retro-red);
  box-shadow: 0 2px 0 #923737, 0 8px 24px var(--retro-shadow);
}
section.cta .btn-primary:hover, section.cta .btn-primary:focus {
  background: var(--retro-orange);
}
section.cta p {
  color: var(--primary);
  font-weight: 600;
}

/* =================== FLEXBOX CARD AND CONTENT PATTERNS =================== */
.content-wrapper {
  margin: 0 auto;
  max-width: 870px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #f6e5cf;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(135,98,53,0.08);
  padding: 24px 20px 20px 20px;
  border-left: 7px solid var(--retro-orange);
  position: relative;
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 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;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe8;
  border-radius: 16px;
  box-shadow: 0 4px 22px var(--retro-shadow);
  padding: 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 360px;
  border-left: 7px solid var(--retro-gold);
  margin-bottom: 20px;
  color: #2a2220;
  position: relative;
}
.testimonial-card p {
  color: #2a2220;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-card strong {
  color: var(--retro-orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: bold;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fffaf3;
  border-radius: 14px;
  box-shadow: 0 4px 14px var(--retro-shadow);
  border: 3px solid var(--retro-gold);
  padding: 24px 20px 20px 20px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 210px;
  max-width: 280px;
  transition: box-shadow 0.18s, border-color 0.14s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px var(--retro-shadow);
  border-color: var(--retro-orange);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.offer-grid > div {
  background: #fffbe8;
  border: 2px solid var(--retro-orange);
  border-radius: 12px;
  box-shadow: 0 2px 14px var(--retro-shadow);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  padding: 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-grid a {
  color: var(--retro-orange);
  font-weight: 600;
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.offer-grid a:hover {
  color: var(--retro-brown);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.pricing-table > div {
  background: #fffbe8;
  border: 3px double var(--retro-gold);
  border-radius: 14px;
  box-shadow: 0 2px 18px var(--retro-shadow);
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 300px;
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-brand img {
  height: 38px;
}

.footer-brand,
footer nav,
.footer-contact {
  padding: 10px 0;
}

footer {
  background: var(--retro-gold);
  border-top: 7px double var(--primary);
  box-shadow: 0 -2px 20px var(--retro-shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding: 26px 20px 12px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
footer nav a {
  color: var(--primary);
  opacity: 0.85;
  font-weight: 600;
  transition: color 0.15s;
}
footer nav a:hover {
  color: var(--retro-orange);
  opacity: 1;
}
.footer-contact {
  font-size: 1rem;
  color: #312c23;
}
.footer-contact img {
  vertical-align: middle;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 5px 0 0;
}

/* =================== MOBILE NAVIGATION (BURGER MENU) =================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: #fff8ec;
  background: var(--retro-brown);
  border: none;
  border-radius: 46px;
  box-shadow: 0 2px 8px var(--retro-shadow);
  z-index: 1201;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-orange);
  color: #fffbe8;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--primary);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.7,.2,.18,1.3);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  background: var(--retro-orange);
  color: #fffbe8;
  border: none;
  border-radius: 46px;
  cursor: pointer;
  box-shadow: 0 1px 10px var(--retro-shadow);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-brown);
  color: #fffobed;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 84px 32px 0 32px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff8ec;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 15px 6px 15px 0;
  width: 100%;
  border-bottom: 1px dashed var(--retro-gold);
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-orange);
  background: rgba(234,196,106,0.12);
}

@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
  }
  .footer-brand img, header img {
    height: 38px;
  }
}
@media (max-width: 900px) {
  .feature-grid>
div, .offer-grid>div, .pricing-table>div, .testimonial-card {
    max-width: 95vw;
  }
}
/* MOBILE LAYOUTS */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px 10px 10px;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    padding: 12px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 10px;
  }
  .hero .container {
    min-height: 200px;
    padding: 0 0 0 0;
  }
  .hero .content-wrapper {
    padding: 24px 0 20px 0;
    gap: 16px;
  }
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .feature-grid, .offer-grid, .pricing-table, .testimonial-row {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    padding: 16px 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 10px 12px 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.11rem; }
  h3 { font-size: 1rem; }
  .card, .feature-grid>div, .offer-grid>div, .pricing-table>div {
    padding: 15px 7px;
    margin-bottom: 14px;
  }
}

/* ===================== DECORATIVE PATTERNS & MICRO-INTERACTIONS ===================== */
.section:before {
  content: '';
  position: absolute;
  left: -28px;
  top: 12px;
  width: 48px;
  height: 48px;
  background: url('assets/icons/icon-star.svg') no-repeat center/contain;
  opacity: 0.10;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  background: url('assets/icons/icon-check.svg') no-repeat center/contain;
  opacity: 0.08;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.card, .feature-grid>div, .offer-grid>div, .testimonial-card, .pricing-table>div {
  transition: box-shadow 0.2s, transform 0.18s, border-color 0.15s;
}
.card:hover, .feature-grid>div:hover, .offer-grid>div:hover, .testimonial-card:hover, .pricing-table>div:hover {
  box-shadow: 0 8px 30px var(--retro-shadow);
  transform: translateY(-3px) scale(1.018);
  border-color: var(--retro-orange);
}

/* ============ RETRO LISTS ============ */
ul {
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
}
ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 9px;
  color: var(--retro-brown);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: url('assets/icons/icon-check.svg') no-repeat center/contain;
  opacity: 0.68;
}


/* ============= CONTACT SECTION ICONS ============= */
.contact-extra-info p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--retro-orange);
  margin-bottom: 6px;
  font-weight: bold;
}
.contact-extra-info ul {
  margin-left: 10px;
}

/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  background: var(--retro-blue);
  color: #fff8ec;
  padding: 18px 20px 16px 20px;
  box-shadow: 0 -3px 22px var(--retro-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 1rem;
  border-top: 3px dotted var(--retro-orange);
  animation: cookiefadein 0.7s ease;
}
@keyframes cookiefadein {
  0% { transform: translateY(110%); opacity: 0; }
  70% { transform: translateY(-10px); opacity: .8; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-banner-text {
  flex: 1 1 240px;
  min-width: 160px;
  font-size: 1rem;
  color: #fffde5;
}
.cookie-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  padding: 10px 20px;
  background: var(--retro-orange);
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fffbe8;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--retro-shadow);
  transition: background 0.18s, color 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover {
  background: var(--retro-red);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--retro-brown);
}
.cookie-btn.reject:hover {
  background: #a53e3e;
}
.cookie-settings-btn {
  background: var(--retro-gold);
  color: var(--primary);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--retro-orange);
  color: #fff;
}

/* ======================= COOKIE SETTINGS MODAL ======================= */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(35,57,93,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbe8;
  color: #312c23;
  border-radius: 20px;
  max-width: 430px;
  padding: 36px 28px 32px 28px;
  box-shadow: 0 4px 34px var(--retro-shadow);
  border: 3px solid var(--retro-gold);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-width: 250px;
  animation: cookiemodal-in 0.3s;
}
@keyframes cookiemodal-in {
  from { transform: translateY(60px) scale(0.93); opacity:.2; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: var(--retro-orange);
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.cookie-modal .cookie-category span {
  flex: 1;
  font-size: 1.05rem;
  color: var(--retro-brown);
}
.cookie-switch {
  appearance: none;
  display: inline-block;
  width: 45px;
  height: 25px;
  border-radius: 15px;
  background: #e9c46a;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s;
}
.cookie-switch:checked {
  background: var(--retro-orange);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px #bbb;
  transition: left 0.15s;
}
.cookie-switch:checked:before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--retro-orange);
  color: #fffbe8;
  border: none;
  border-radius: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: var(--retro-red);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 5px 16px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 6px;
    font-size: .99rem;
    gap: 14px;
  }
}

/* =================== FORM ELEMENTS (RETRO) =================== */
input, select, textarea {
  background: #fffbe8;
  border-radius: 7px;
  border: 2px solid var(--retro-gold);
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 11px 13px;
  font-size: 1rem;
  color: #2a2220;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px var(--retro-shadow);
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--retro-orange);
  box-shadow: 0 3px 12px var(--retro-shadow);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
  display: block;
}

/* ========== NOSTALGIC SCROLLBAR STYLE ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #fffbe8;
}
::-webkit-scrollbar-thumb {
  background: var(--retro-gold);
  border-radius: 7px;
  border: 2px solid #fffbe8;
}

/* ================== Z-INDEXS FOR MOBILE NAV & COOKIE ================== */
header { z-index: 1001; }
.mobile-menu { z-index: 1200; }
.mobile-menu-toggle { z-index: 1201; }
.cookie-banner { z-index: 1400; }
.cookie-modal-overlay { z-index: 1500; }

/* ========== Utility helpers ========== */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-12 { margin-bottom: 12px !important; }
.gap-24 { gap: 24px !important; }
.gap-12 { gap: 12px !important; }