/* =============================
   CSS RESET & BASE NORMALIZATION
   ============================= */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8F2;
  color: #254D27;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =====================
   BRAND COLORS & FONTS
   ===================== */
:root {
  --primary: #254D27;
  --secondary: #81B071;
  --accent: #F6F8F2;
  --danger: #FA5252;
  --brand-yellow: #FFE66D;
  --brand-pink: #E65C7D;
  --brand-blue: #5cc4e6;
  --brand-light: #F6F8F2;
}

body {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: bold;
  color: var(--primary);
}

/* ========================
   CONTAINER & LAYOUT FLEX
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(81,109,92,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(36,89,54,0.11);
  background: #fff;
  transition: transform 0.18s cubic-bezier(.55,1.35,.5,1), box-shadow 0.28s;
  min-width: 260px;
  flex: 1 1 260px;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(36,89,54,0.18);
  z-index: 5;
}

.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;
}
.text-image-section>* {
  flex: 1 1 350px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  color: #212212;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(45,80,50,0.09);
  min-width: 240px;
  max-width: 480px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
  color: #18301F;
}
.testimonial-meta, .testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card span:last-child {
  color: var(--secondary);
  font-size: 1.1em;
}

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

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px 0 rgba(81,109,92,0.09);
  padding: 32px 28px 24px 28px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  border-left: 8px solid var(--secondary);
  transition: box-shadow 0.17s, border-color 0.25s;
}
.service-item:hover, .service-item:focus-within {
  border-left: 8px solid var(--brand-pink);
  box-shadow: 0 6px 20px 0 rgba(129,176,113,0.13);
  z-index: 3;
}
.service-item strong {
  color: var(--brand-pink);
  font-size: 1.1em;
  letter-spacing: 0.04em;
}

/* special case study card in realizacje.html */
.case-study {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  background: #FFF6FA;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 2px 12px 0 rgba(230, 92, 125, 0.03);
}

/* ===================
   HERO & CTAS
   =================== */
.hero {
  padding: 60px 0 48px 0;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #f6f8f2 80%, #E9F8EC 100%);
  border-radius: 0 0 44px 44px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 18px;
  text-shadow: 0 2px 0 #E65C7D33, 2px 2px 0 #FFE66D33;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  letter-spacing: 0.04em;
}
.hero p {
  font-size: 1.17rem;
  color: var(--secondary);
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .cta-btn {
  font-size: 1.17rem;
}

.cta-btn {
  background: var(--brand-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: bold;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(230,92,125, 0.18);
  padding: 15px 38px;
  margin-top: 24px;
  margin-bottom: 16px;
  transition: background 0.15s, color 0.18s, box-shadow 0.21s, transform 0.18s;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 18px; right: 18px; bottom: 8px; height: 6px;
  background: var(--brand-yellow);
  border-radius: 5px;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px 0 rgba(54,116,78,0.13);
}
.cta-btn:hover:after, .cta-btn:focus:after {
  opacity: 1;
}


/* =============================
   NAVIGATION & HEADER STYLES
   ============================= */
header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 11px 0 rgba(36,89,54, 0.02);
  margin-bottom: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  width: 100%;
}
nav > a > img {
  height: 46px;
  width: auto;
  margin-right: 26px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-right: 24px;
}
nav ul li {
  margin-bottom: 0;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  transition: background 0.17s, color 0.15s;
  letter-spacing: 0.03em;
  position: relative;
}
nav ul li a:hover, nav ul li a.active, nav ul li a:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}
nav .cta-btn {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  padding: 10px 26px;
  font-size: 1rem;
  box-shadow: 0 1px 6px 0 rgba(230,92,125, 0.17);
}

/* Hamburger/Burger menu button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 32px;
  top: 20px;
  z-index: 160;
  background: var(--brand-pink);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2em;
  border: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.22s, transform 0.26s;
  box-shadow: 0 2px 10px 0 rgba(230,92,125,0.10);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
  transform: scale(1.08);
}

/* =============================
   MOBILE MENU OVERLAY & SLIDE
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: -2px 0 16px 0 rgba(36,89,54,0.06), -6px 0 40px 0 rgba(230,92,125,0.11);
  transform: translateX(105vw);
  transition: transform 0.36s cubic-bezier(0.53,1.65,0.31,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 24px 36px;
  gap: 18px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 32px;
  top: 22px;
  width: 44px;
  height: 44px;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2em;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.19s, transform 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
  transform: scale(1.11);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  padding: 18px 0 10px 0;
  border-bottom: 2px dotted var(--brand-yellow);
  border-radius: 0;
  transition: background 0.13s, color 0.16s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1040px) {
  nav ul, nav .cta-btn {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 1040px) {
  .mobile-menu {
    width: 100vw;
    max-width: 97vw;
  }
}

/* ===================
   FOOTER STYLES
   =================== */
footer {
  background: #fff;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -8px 36px 0 rgba(38,77,39,0.025);
  margin-top: 54px;
  padding-top: 26px;
  padding-bottom: 16px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
}
.footer-top img {
  height: 38px;
  width: auto;
}
.footer-top nav {
  display: flex;
  gap: 18px;
}
.footer-top nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  padding: 4px 10px;
  border-radius: 14px;
  background: var(--accent);
  transition: background 0.07s, color 0.19s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  color: var(--brand-pink);
  background: var(--brand-yellow);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  color: #363836;
  font-size: 0.96rem;
}

/* ========================
   ARTISTIC/CREATIVE EXTRAS
   ======================== */
section {
  position: relative;
  overflow-x: visible;
}
section:not(.hero):before {
  /* Decorative brush/paint-like artistic overlay */
  content: '';
  display: block;
  position: absolute;
  left: -52px;
  top: -30px;
  width: 120px;
  height: 90px;
  z-index: 0;
  background: url('../assets/decoration-brush.svg') no-repeat center/contain;
  opacity: 0.16;
  pointer-events: none;
}
.content-wrapper {
  z-index: 1;
  position: relative;
  background: none;
}
.card, .service-item, .testimonial-card, .case-study {
  /* subtle handdrawn border */
  border: 2.5px solid #fffbe6;
  outline: 2.5px dashed var(--brand-yellow);
  outline-offset: -6px;
}
.card:hover, .service-item:hover {
  outline-color: var(--brand-pink);
}

/* List Items with Icon / Artistic Accent */
ul li img {
  margin-right: 16px;
  vertical-align: middle;
  height: 1.6em;
  width: 1.6em;
  display: inline-block;
}
ul li, ol li {
  position: relative;
  padding-left: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
}
ul li:before, ol li:before {
  display: none;
}

/* Artistic Section Dividers */
.section:not(:last-child) {
  border-bottom: 6px dashed var(--brand-yellow);
  margin-bottom: 64px;
  border-radius: 0 0 30px 30px;
}

/* Artistic underline for h2 */
h2 {
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  display: block;
  height: 6px;
  width: 70px;
  background: var(--brand-blue);
  border-radius: 8px;
  position: absolute;
  left: 5px;
  bottom: -9px;
  z-index: 1;
  opacity: 0.19;
}

/* ========================
   FORMS & INPUTS
   ======================== */
input, textarea, select {
  padding: 12px 14px;
  border-radius: 11px;
  border: 1.6px solid var(--secondary);
  margin-bottom: 18px;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

/* ========================
   COOKIES BANNER & MODAL
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: 98vw;
  max-width: 520px;
  background: #fffbe9;
  color: #2d2d18;
  border-radius: 22px 22px 8px 8px;
  box-shadow: 0 -2px 20px 0 rgba(81,109,92,0.14), 0 8px 26px 0 rgba(230,92,125,0.06);
  padding: 22px 28px 18px 28px;
  font-size: 1.1rem;
  z-index: 3300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.37s cubic-bezier(.77,1.65,.47,.97), box-shadow 0.25s;
  border: 1.5px solid var(--brand-yellow);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  color: #18301F;
  margin-bottom: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 0;
  font-size: 1rem;
  border: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(230,92,125,0.11);
  transition: background 0.13s, color 0.12s, transform 0.14s;
}
.cookie-btn.accept {
  background: var(--brand-pink);
}
.cookie-btn.reject {
  background: var(--danger);
}
.cookie-btn.settings {
  background: var(--brand-blue);
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c33535;
  color: #fffbe6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,77,39, 0.27);
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px 32px 30px;
  box-shadow: 0 4px 32px 0 rgba(230,92,125, 0.10); 
  max-width: 370px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  padding: 12px 0;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E8F4E4;
  border-radius: 18px;
  transition: background 0.19s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--secondary);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-pink);
  transition: transform 0.19s, background 0.2s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: var(--primary);
}
.cookie-category.essential .cookie-toggle {
  filter: grayscale(0.8);
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: var(--brand-pink);
  font-size: 1.6rem;
}
.cookie-modal .close-modal:hover,.cookie-modal .close-modal:focus {
  color: var(--danger);
}

/* ==============
   RESPONSIVENESS
   ============== */
@media (max-width: 1200px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 940px) {
  .service-list {
    gap: 18px;
  }
  .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .hero {
    padding: 32px 0 24px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .cta-btn {
    padding: 12px 18px;
    font-size: 1rem;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 5vw;
    border-radius: 14px;
  }
  .card-container, .content-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .card, .service-item, .testimonial-card, .case-study {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: 14px;
    padding: 20px 12px;
  }
  .feature-item {
    gap: 9px;
  }
  .footer-top,
  .footer-top nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .section:not(:last-child) {
    margin-bottom: 42px;
    border-radius: 0 0 17px 17px;
  }
  .testimonial-card {
    padding: 13px 12px;
  }
}
@media (max-width: 600px) {
  .case-study,
  .service-item,
  .testimonial-card,
  .card {
    padding: 13px 7px;
  }
  .cookie-banner {
    max-width: 99vw;
    padding: 18px 9px 12px 9px;
    font-size: 0.94rem;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
@media (max-width: 500px) {
  h1, h2, h3 {
    font-size: 1.12rem !important;
  }
  .footer-bottom, .footer-top nav a {
    font-size: 0.87rem;
  }
}

/* =====================
   MISC./TYPOGRAPHY ART
   ===================== */
.text-section {
  margin-bottom: 22px;
  font-size: 1.04rem;
  background: rgba(234,255,206,0.10);
  border-left: 6px solid var(--brand-blue);
  padding: 20px 16px 18px 20px;
  border-radius: 13px;
}
.text-section h2 {
  font-size: 1.3rem;
  color: var(--brand-pink);
  margin-top: 11px;
  margin-bottom: 11px;
}

/* Artistic micro-interaction underline for main links */
nav ul li a {
  position: relative;
}
nav ul li a:after {
  content: '';
  display: block;
  height: 3.5px;
  width: 87%;
  background: var(--brand-blue);
  border-radius: 6px;
  position: absolute;
  left: 7%;
  bottom: 3.5px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.15s;
}
nav ul li a:hover:after, nav ul li a.active:after, nav ul li a:focus:after {
  opacity: 0.6;
}

/* ====================
   ANIMATIONS & EFFECTS
   ==================== */
.card, .service-item, .testimonial-card {
  transition: transform 0.16s cubic-bezier(.56,.34,.83,1.62), box-shadow 0.14s, outline-color 0.24s;
}
.card:hover, .service-item:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 28px 0 rgba(230,92,125,0.10);
}
.testimonial-card {
  transition: background 0.21s, box-shadow 0.17s;
}
.testimonial-card:hover {
  background: #FFFCF8;
  box-shadow: 0 10px 29px 0 rgba(81,109,92,0.11);
}

/* ====================
   Z-INDEXES
   ==================== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 100; }
.mobile-menu      { z-index: 2000; }
.cookie-banner    { z-index: 3300; }
.cookie-modal-overlay { z-index: 3400; }

/* ===============
   ADDITIONAL TOUCH
   =============== */
::-webkit-scrollbar {
  width: 13px;
  background: #eaf8ec;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 9px;
  border: 2px solid #f6f8f2;
}

::selection {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}

/* For focusable elements */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

/* ===========
   PRINT RESET
   =========== */
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #111 !important;
    text-shadow: none !important;
    filter: none !important;
  }
  .mobile-menu, .cookie-banner, .cookie-modal-overlay, header, footer {
    display: none !important;
  }
  main, .container, .content-wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}
