/* =======================================================
   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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F8FAF8;
  color: #174D3D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F6C445;
  outline-offset: 2px;
}

/* =======================================================
   BRAND & TYPOGRAPHY
   ======================================================= */
:root {
  --primary: #174D3D;
  --secondary: #F6C445;
  --accent: #FFFFFF;
  --neutral-bg: #F8FAF8;
  --gray: #F2F4F1;
  --shadow: 0 2px 16px 0 rgba(23,77,61,0.08);
  --font-display: 'Montserrat', 'Arial Black', 'Arial Rounded MT Bold', Impact, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  background: var(--neutral-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.4rem; letter-spacing: -0.02em; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}
p, li, ul, ol {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.5em;
}
strong { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-bg);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =======================================================
   GEOMETRIC STRUCTURED FOUNDATION
   ======================================================= */
.features,
.services ul,
ul.features-list,
.footer-nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features li,
.services ul li,
ul.features-list li {
  flex: 1 1 230px;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 220px;
  border: 2.5px solid var(--secondary);
  transition: box-shadow .18s, transform .18s, border-color .2s;
}
.features li:hover,
.services ul li:hover,
ul.features-list li:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(23,77,61, 0.16);
  transform: translateY(-6px) scale(1.03);
}
/* Cards in Oferta/Realizacje */
.service-card, .guide-card {
  background: var(--accent);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 26px;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  min-width: 220px;
  transition: box-shadow .18s, transform .15s;
}
.service-card:hover, .guide-card:hover {
  box-shadow: 0 8px 32px 0 rgba(23,77,61,0.17);
  transform: translateY(-8px) scale(1.03);
  border-bottom: 4px solid var(--primary);
}

/* Grid utility classes */
.card-container,
.services-grid .content-wrapper,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

/* =======================================================
   HERO SECTIONS
   ======================================================= */
.hero, .offer-hero, .about-hero, .guide-hero, .realizacje-hero, .contact-hero, .thank-you {
  background: linear-gradient(108deg, var(--secondary) 35%, var(--accent) 120%);
  border-bottom: 4px solid var(--primary);
  display: flex;
  align-items: center;
  min-height: 280px;
  margin-bottom: 60px;
}
.hero h1, .hero p,
.offer-hero h1, .about-hero h1, .guide-hero h1, .realizacje-hero h1, .contact-hero h1, .thank-you h1 {
  color: var(--primary);
  text-shadow: 0 2px 10px rgba(246,196,69,0.1);
}
.hero .container, .offer-hero .container, .about-hero .container, .guide-hero .container, .realizacje-hero .container, .contact-hero .container, .thank-you .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}
.hero .content-wrapper, .offer-hero .content-wrapper, .about-hero .content-wrapper, .guide-hero .content-wrapper, .realizacje-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}

/* =======================================================
   MAIN NAVIGATION
   ======================================================= */
header {
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 0;
}
.main-nav > a img {
  height: 42px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 24px;
}
.main-nav ul li {
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.main-nav ul li a {
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .18s, color .18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  margin-left: 24px;
  box-shadow: 0 2px 10px 0 rgba(23,77,61,0.10);
  transition: background .22s, transform .13s, box-shadow .15s;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(246,196,69, 0.14);
  transform: translateY(-2px) scale(1.04);
}

/* Hide mobile nav toggle on desktop */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  color: var(--primary);
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 18px;
  transition: background .18s;
  z-index: 22;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--accent);
  transform: translateX(-110vw);
  transition: transform .36s cubic-bezier(.73,.03,.73,.97);
  z-index: 999;
  padding: 0 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.2rem;
  padding: 12px 8px 6px 0;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 24px;
  margin-bottom: 22px;
  transition: color .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 0;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.3rem;
  font-family: var(--font-display);
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 600;
  transition: background 0.17s, color 0.17s;
  width: 100%;
  margin: 0 0 8px 0;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Show burger only on mobile, hide desktop nav */
@media (max-width: 991px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =======================================================
   SECTIONS & FLEX LAYOUTS
   ======================================================= */
.section, .company-story, .services, .features, .about-features, .offer-features, .testimonials, .about-testimonials, .faq, .articles, .guides, .case-studies, .cookie-banner {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: #1E2732;
  margin-bottom: 24px;
  border-left: 6px solid var(--secondary);
  transition: box-shadow .16s;
  font-size: 1.1rem;
  max-width: 640px;
}
.testimonial-card span {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(246,196,69, 0.10), 0 2px 16px 0 rgba(23,77,61,0.08);
}

@media (min-width: 800px) {
  .features li,
  .services ul li,
  ul.features-list li,
  .service-card, .guide-card {
    min-width: 260px;
    max-width: 350px;
  }
  .testimonial-card { max-width: 800px; }
}

/* Offer - Services grid */
.services-grid .content-wrapper {
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  .services-grid .content-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}

/* FAQ */
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.articles ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

/* Guides */
.guides .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.guide-card {
  margin-bottom: 18px;
  border-radius: 16px;
  border-left: 5px solid var(--secondary);
  box-shadow: var(--shadow);
}
.guide-card a {
  margin-top: 14px;
}

/* Text section */
.text-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.text-section li {
  margin-bottom: 10px;
  list-style: disc;
}

/* Features lists */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

/* CTA Section */
.cta {
  background: linear-gradient(102deg, var(--secondary) 35%, var(--accent) 120%);
  border-radius: 24px;
  border: 2.5px solid var(--secondary);
  text-align: left;
  min-height: 140px;
  box-shadow: 0 2px 18px 0 rgba(246,196,69,0.05);
  margin-bottom: 48px;
  padding: 36px 24px 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75em;
}
.cta h2 { color: var(--primary); }
.cta .cta-btn { margin-left: 0; margin-top: 12px; }

/* =======================================================
   FOOTER & SOCIAL
   ======================================================= */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  font-size: 1rem;
}
footer .container {
  padding-top: 42px;
  padding-bottom: 14px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact p {
  margin-bottom: 6px;
}
.footer-contact a { color: var(--accent); font-weight: 700; }
.footer-contact a:hover { text-decoration: underline; }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-social a img {
  height: 30px;
  width: 30px;
  filter: none;
  transition: filter 0.15s, background .15s;
  background: transparent;
  border-radius: 8px;
  padding: 2px;
  box-sizing: content-box;
}
.footer-social a:hover img {
  filter: brightness(0.9) drop-shadow(0 2px 6px #F6C445);
  background: var(--secondary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.13);
  padding-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Layout for footer */
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* =======================================================
   COOKIE BANNER & MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 -4px 16px 0 rgba(23,77,61,0.13);
  z-index: 1100;
  padding: 22px 14px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.02rem;
  flex-wrap: wrap;
  animation: cookieFadeIn 0.5s cubic-bezier(.7,.01,.83,1.02);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(120px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  min-width: 165px;
  margin-right: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow 0.16s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .reject {
  background: #E0E3E1;
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #D8DAD8;
  color: #0b2323;
}
.cookie-banner .settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,77,61,0.48);
  z-index: 2200;
  align-items: center;
  justify-content: center;
  transition: opacity .34s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
  animation: fadeIn .44s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 rgba(23,77,61,0.13);
  padding: 32px 28px 26px 28px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: slideInCookies .46s cubic-bezier(.77, .08, .8, 1.03);
}
@keyframes slideInCookies {
  from { transform: scale(.87) translateY(108px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.4rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 9px 0;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .essential-checkbox {
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--secondary);
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--primary); }

/* =======================================================
   RESPONSIVE - MOBILE FIRST
   ======================================================= */
@media (max-width: 991px) {
  .hero, .offer-hero, .about-hero, .guide-hero, .realizacje-hero, .contact-hero, .thank-you {
    min-height: 180px;
    margin-bottom: 34px;
  }
  .container {
    padding: 0 10px;
  }
  .main-nav {
    padding: 13px 8px 13px 0;
  }
}
@media (max-width: 768px) {
  .section, .company-story, .services, .features, .about-features, .offer-features, .testimonials, .about-testimonials, .faq, .articles, .guides, .case-studies,
  .cookie-banner {
    padding: 24px 6px;
  }
  .features, .services ul, ul.features-list, .footer-nav > ul {
    flex-direction: column;
    gap: 18px;
  }
  .features li, .services ul li, ul.features-list li, .service-card, .guide-card {
    min-width: 80vw;
    max-width: 100vw;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 16px 8px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .about-hero .content-wrapper,
  .guide-hero .content-wrapper,
  .contact-hero .content-wrapper,
  .thank-you .content-wrapper,
  .realizacje-hero .content-wrapper {
    max-width: 98vw;
  }
  .cta {
    padding: 20px 8px 20px 8px;
    border-radius: 18px;
    min-height: 98px;
  }
  footer .container {
    padding-left: 10px; padding-right: 10px; padding-bottom: 6px; padding-top: 18px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1rem;
  }
  .testimonial-card { font-size: 0.97rem; }
  footer .content-wrapper { gap: 18px; }
}

/* =======================================================
   GEOMETRIC & VISUAL EFFECTS
   ======================================================= */
section, .service-card, .guide-card {
  position: relative;
  /* Decorative geometry */
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -36px;
  right: 18px;
  width: 84px;
  height: 38px;
  background: linear-gradient(114deg, var(--secondary) 60%, transparent 100%);
  border-radius: 35% 65% 70% 30%/55% 40% 60% 45%;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -38px;
  left: 14px;
  width: 60px;
  height: 30px;
  background: linear-gradient(130deg, var(--secondary) 20%, transparent 100%);
  border-radius: 38% 62% 70% 30%/55% 40% 60% 45%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.service-card:before, .guide-card:before {
  content: '';
  position: absolute;
  top: -8px; right: -10px;
  width: 32px; height: 14px;
  background: var(--secondary);
  transform: skew(-20deg, -13deg) rotateZ(-5deg);
  border-radius: 8px 30px 24px 13px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}
.service-card:after, .guide-card:after {
  content: '';
  position: absolute;
  bottom: -7px; left: -9px;
  width: 26px; height: 10px;
  background: var(--primary);
  border-radius: 6px 9px 14px 3px;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}

/* Angular geometric heading accent */
h2, h3, h4 {
  position: relative;
  z-index: 2;
}
h2:before {
  content: '';
  display: inline-block;
  width: 42px; height: 7px;
  background: var(--secondary);
  margin-right: 12px;
  border-radius: 4px 14px 4px 12px;
  vertical-align: middle;
  margin-bottom: 6px;
}
/* Only main page: no accent on hero h1 */
.hero h1:before, .about-hero h1:before,
.offer-hero h1:before, .guide-hero h1:before,
.realizacje-hero h1:before, .contact-hero h1:before {display: none;}

/* Hide accent for .footer, .cookie-banner, etc. */
footer h2:before, .cookie-modal h3:before { display: none;}

/* =======================================================
   ANIMATIONS & HOVERS
   ======================================================= */
a, button, .cta-btn, .main-nav ul li a, .mobile-nav a, .footer-nav a {
  transition: all .18s cubic-bezier(.77,.01,.73,.97);
}
.card, .service-card, .guide-card, .testimonial-card {
  box-shadow: var(--shadow);
  transition: box-shadow .13s, transform .12s;
}
.card:hover, .service-card:hover, .guide-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(246,196,69, 0.15), 0 5px 24px 0 rgba(23,77,61,0.12);
}

/* =======================================================
   FORMS (if present)
   ======================================================= */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 7px;
  padding: 9px 12px;
  margin-bottom: 16px;
  background: var(--gray);
  color: var(--primary);
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}

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

/* Stop content overlap at bottom (for fixed cookie banner) */
body { padding-bottom: 72px; } 
@media (max-width: 540px) {
  body { padding-bottom: 90px; }
}
/* ================== END ============= */