/* =============================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #FFF;
  color: #1C3753;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1C3753;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #80AF23;
}
ul, ol {
  padding-left: 1.25em;
}

/* =============================
    BRAND COLORS and FONT VARS
============================= */
:root {
  --brand-primary: #1C3753;
  --brand-secondary: #80AF23;
  --brand-accent: #F6F6F6;
  --brand-warm-bg: #F5EFE4;
  --brand-warm-soft: #FFF7ED;
  --brand-shadow: 0 2px 8px rgba(28,55,83,0.08), 0 1.5px 10px rgba(128,175,35,0.06);
  --border-radius: 18px;
  --transition: 0.25s cubic-bezier(.46,.03,.52,.96);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ============================
  UNIVERSAL CONTAINER & LAYOUT
============================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================
       TYPOGRAPHY
============================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 9px;
  font-weight: 600;
}
h4, h5 {
  font-size: 1rem;
}
p, ul, ol, address {
  font-size: 1rem;
  color: #28394E;
}
strong, b {
  font-weight: 700;
}
em, i {
  color: #5D6B80;
}
.text-section ul {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section p {
  margin-bottom: 15px;
}
.faq-list dt {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 18px;
  color: var(--brand-primary);
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 12px;
  color: #345;
}

/* =============================
      HEADER & NAVIGATION
============================= */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 18px rgba(28,55,83,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1050;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 38px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 7px 11px;
  border-radius: 8px;
  transition: background .19s, color .19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: #FFF;
}
.btn-primary {
  background: var(--brand-secondary);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 100vw;
  padding: 12px 34px;
  margin-left: 16px;
  box-shadow: 0 1.5px 10px rgba(128,175,35,0.09);
  transition: background var(--transition), transform 0.09s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus {
  background: #668d1b;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.btn-secondary {
  background: var(--brand-primary);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 100vw;
  padding: 12px 28px;
  margin-left: 12px;
  box-shadow: 0 1.5px 10px rgba(28,55,83,0.09);
  transition: background var(--transition), transform 0.09s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #14263b;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* ============================
      MOBILE NAVIGATION
============================ */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: #fff;
  font-size: 2.1rem;
  padding: 8px 20px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  z-index: 1011;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #668d1b;
  color: #fff8df;
}

.mobile-menu {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,55,83,0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  padding: 22px 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1300;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  margin-top: 58px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding-bottom: 8px;
  padding-top: 8px;
  border-radius: 12px;
  transition: background 0.12s, color 0.12s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(128,175,35,0.09);
}

/* Hide desktop nav, show mobile menu button on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 980px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media (max-width: 540px) {
  header img {
    height: 36px;
  }
}


/* ===============================
   HERO SECTION & WARM BACKGROUNDS
=============================== */
.hero-section {
  background: var(--brand-warm-bg);
  padding: 70px 0 40px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 8px 36px rgba(28,55,83,0.12);
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero-section h1 {
  font-size: 2.65rem;
  line-height: 1.18;
  color: var(--brand-primary);
  margin-bottom: 14px;
}
.hero-section p {
  font-size: 1.18rem;
  color: #324259;
  margin-bottom: 21px;
}
.hero-section .btn-primary {
  margin-top: 10px;
}

/* =========================
      Features List
========================= */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  margin-top: 10px;
  list-style: none;
  justify-content: flex-start;
}
.features-list li {
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  padding: 28px 26px 20px 26px;
  max-width: 330px;
  min-width: 260px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.23s;
}
.features-list li:hover {
  box-shadow: 0 6px 24px rgba(128,175,35,0.14), 0 2px 12px rgba(28,55,83,0.15);
}
.features-list img {
  width: 43px;
  height: 43px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #fffbe6;
}
.features-list h3 {
  font-size: 1.13rem;
}
.features-list p {
  color: #334056;
  font-size: 0.97rem;
}

/* ==========================
        SERVICES LIST
========================== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.services-list li {
  background: #fff;
  padding: 13px 22px;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  margin-bottom: 4px;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.services-list li:last-child {
  background: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.services-list a {
  color: var(--brand-secondary);
  text-decoration: underline;
  transition: color 0.13s;
  font-weight: 600;
}
.services-list a:hover, .services-list a:focus {
  color: var(--brand-primary);
}

/* ============================
         TESTIMONIALS
============================ */
.testimonial-section {
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
}
.testimonial-section .content-wrapper {
  gap: 22px;
}
.testimonial-card {
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 10px rgba(28,55,83,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card p {
  color: #234;
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 0.98rem;
  margin-left: 10px;
  font-family: var(--font-display);
}

/* ===========================
      CTA/Disclaimer Section
=========================== */
.cta-section {
  background: var(--brand-warm-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  text-align: center;
  padding-top: 38px;
  padding-bottom: 38px;
}
.cta-section h2 {
  font-size: 1.55rem;
  margin-bottom: 17px;
}
.cta-section .btn-primary,
.cta-section .btn-secondary {
  margin: 0 7px 14px 7px;
}

.disclaimer-section {
  background: #FFFbe6;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  font-size: 0.95rem;
  color: #693e0e;
  padding: 28px 16px 16px 18px !important;
}

/* ====================
       CARDS & GRIDS
==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  padding: 26px 30px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform 0.14s;
}
.card:hover {
  box-shadow: 0 5px 14px rgba(128,175,35,0.09), 0 3px 12px rgba(28,55,83,0.13);
  transform: translateY(-3px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

dt, dd {
  font-size: 1rem;
}

/* =============================
        SERVICE PAGE CARDS
============================= */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  padding: 22px 26px 16px 26px;
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s;
}
.service-card:hover {
  box-shadow: 0 5px 18px rgba(128,175,35,0.13), 0 3px 12px rgba(28,55,83,0.15);
}
.service-card h2 {
  display: flex;
  align-items: baseline;
  gap: 13px;
  font-size: 1.22rem;
}
.service-card .service-price {
  color: var(--brand-secondary);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
}
.cta-box {
  margin-top: 8px;
}

/* ===============================
      AUDIENCE (dla-kogo) cards
=============================== */
.audience-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  margin-top: 10px;
  justify-content: flex-start;
}
.audience-list li {
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  padding: 26px 22px 21px 22px;
  min-width: 230px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  transition: box-shadow 0.23s;
}
.audience-list li:hover {
  box-shadow: 0 4px 20px rgba(128,175,35,0.12), 0 1.5px 10px rgba(28,55,83,0.10);
}
.audience-list b {
  font-size: 1.06rem;
}
.audience-list p {
  font-size: 0.96rem;
  color: #223244;
}

/* ============================
     FAQ / DL List Style
============================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-list dt {
  font-size: 1.12em;
}
.faq-list dd {
  font-size: 1em;
  color: #24344e;
  margin-left: 0;
}
/* ===============================
        CONTACT INFO & MAP BOX
=============================== */
.contact-info {
  background: var(--brand-accent);
  padding: 18px 22px;
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-box {
  background: #FFFbe6;
  padding: 18px 22px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  color: #895714;
  font-size: 0.98rem;
}

/* =============================
        FOOTER STYLE
============================= */
footer {
  background: var(--brand-primary);
  color: #FFF;
  padding: 44px 0 12px 0;
  margin-top: 60px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -3px 30px rgba(28,55,83,0.07);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FFF;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 5px 9px;
  transition: background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-secondary);
  color: #FFF;
}
footer address {
  color: #FFFCF6;
  font-size: 0.97rem;
  font-style: normal;
  margin-bottom: 8px;
}
footer p {
  color: #edf1f6;
  font-size: 0.93rem;
  margin-top: 15px;
}

/* ===============================
     COOKIE CONSENT BANNER
=============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 3100;
  background: #fffbe6;
  box-shadow: 0 -2px 18px rgba(51, 51, 51, 0.14);
  padding: 20px 20px 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: cookieIn .5s;
}
@keyframes cookieIn {from {transform: translateY(80px);} to {transform: translateY(0);}}
.cookie-banner .cookie-message {
  color: #864C00;
  font-size: 1rem;
  margin-right: 30px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.98rem;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  margin: 0;
  box-shadow: 0 1.5px 8px rgba(128,175,35,0.07);
  transition: background var(--transition), box-shadow 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-banner button.cookie-settings {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #668d1b;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #28394E;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,55,83, 0.74);
  backdrop-filter: blur(2px);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.37s;
}
@keyframes cookieModalIn {from {opacity:0;transform: scale(1.07);} to {opacity:1;transform: scale(1);}}
.cookie-modal {
  background: #fffbe6;
  border-radius: var(--border-radius);
  box-shadow: 0 7px 32px rgba(128,175,35,0.13), 0 3px 14px rgba(28,55,83,0.10);
  padding: 34px 28px 26px 28px;
  width: 98vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.22em;
  margin-bottom: 8px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 17px; right: 21px;
  background: none;
  border: none;
  color: #966614;
  font-size: 1.42em;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: var(--brand-secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07em;
  margin-bottom: 2px;
}
.cookie-category-row label {
  font-weight: 500;
  color: var(--brand-primary);
}
.cookie-toggle {
  display: inline-block;
  width: 38px;
  height: 21px;
  position: relative;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e0d199;
  border-radius: 24px;
  transition: background 0.17s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--brand-secondary);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px; bottom: 2px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.19s cubic-bezier(.78,-0.36,.32,1.34);
  box-shadow: 0 2px 8px #eee;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal button {
  min-width: 100px;
}

.cookie-category-row.disabled {
  filter: grayscale(0.7) opacity(0.6);
  pointer-events: none;
}

/* ===========================
    RESPONSIVENESS
=========================== */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  .hero-section h1 { font-size: 2.04rem; }
  .container { max-width: 98vw; }
  .main-nav { gap: 11px; }
  .card-container,
  .features-list,
  .audience-list,
  .services-grid,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper, .section { padding-left: 8px; padding-right: 8px; }
  .hero-section { padding: 32px 0 22px 0; }
  .hero-section h1 { font-size: 1.38rem; }
  .hero-section p { font-size: 1rem; }
  .card, .service-card, .audience-list li, .features-list li {
    min-width: 180px;
    max-width: 100%;
    padding: 16px 12px;
  }
  .cta-section, .disclaimer-section, .testimonial-section, .map-box, .contact-info {
    padding: 16px 10px !important;
  }
  .content-wrapper { gap: 20px; }
  .section { padding: 26px 8px; margin-bottom: 32px; }
  footer { padding: 32px 0 8px 0; }
  .footer-nav { gap: 8px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 8px 15px 10px;}
  .cookie-banner .cookie-message { margin-right: 0; }
}
@media (max-width: 620px) {
  .container { padding-left: 3px; padding-right: 3px; }
  .main-nav, .footer-nav { gap: 4px; }
  .features-list, .audience-list, .services-grid, .content-grid { gap: 12px; }
  .mobile-nav { padding-left: 14px; }
  .map-box, .contact-info, .testimonial-card, .card, .service-card, .audience-list li, .features-list li {
    padding: 12px 6px !important;
  }
}
@media (max-width: 540px) {
  .hero-section h1, h1 { font-size: 1.18rem; }
  h2 { font-size: 1.03rem; }
  h3 { font-size: 0.95rem; }
  .container { padding-left: 0; padding-right: 0; }
  .content-wrapper { gap: 11px; }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 12px 5px; }

  .features-list, .audience-list, .services-grid { flex-direction: column !important; }
  .text-image-section { flex-direction: column !important; gap: 19px; }
  .footer-nav { flex-direction: column; gap: 4px; }
}

@media (max-width: 420px) {
  .cookie-modal {
    padding: 18px 4px 14px 4px;
    max-width: 98vw;
  }
}

/* Util classes for sanity */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.pb-0 { padding-bottom: 0 !important; }

/* Hide scrollbar for mobile menu overlay */
.mobile-menu::-webkit-scrollbar { display: none; }

/* Provide nice focus indicator */
a, button:focus { outline: 2px solid var(--brand-secondary); outline-offset: 1px; }

/* Ensure no Grid or Columns properties! */
