/* ==== Klarsee Balance Vintage Retro 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,
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #faf7f2;
  color: #22303a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  text-decoration: none;
  color: #2B4755;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B07B41;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ===== Vintage Retro Colors & Typography ===== */
:root {
  --primary: #2B4755;  /* Deep Blue-Green */
  --secondary: #6BC1C6; /* Pastel Aqua */
  --accent: #F8FAF7;   /* Creamy white */
  --retro-ochre: #B07B41;
  --retro-mustard: #F0DC82;
  --retro-red: #E95F46;
  --retro-papaya: #FEF3E2;
  --retro-coffee: #7A5E2A;
  --text-dark: #22303a;
  --text-light: #fff;
  --shadow: 0 2px 8px 0 rgba(148, 127, 92, 0.14);
  --radius: 18px;
  --radius-sm: 9px;
  --border: 2px solid var(--retro-ochre);
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  src: local('Montserrat-Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  src: local('Montserrat-Regular'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  src: local('Roboto-Regular'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  text-shadow: 0 2px 0 var(--retro-mustard), 0 1px 0 #fff;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 11px;
  font-weight: 700;
}

p, li, strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}
.subheadline {
  font-size: 1.18rem;
  color: var(--retro-coffee);
  font-style: italic;
  margin-bottom: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}

strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
}

/* Retro Patterns & Elements */
body {
  background-color: var(--accent);
  background-image: repeating-linear-gradient(135deg, #f7edda 0 4px, transparent 4px 16px), repeating-linear-gradient(45deg, #f2dcc2 0 2px, transparent 2px 14px);
  background-size: 40px 40px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: rgba(255,249,239, 0.72);
  box-shadow: var(--shadow);
  position: relative;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* === Navigation === */
header {
  background: var(--primary);
  padding: 0;
  border-bottom: 4px solid var(--retro-ochre);
  box-shadow: 0 2px 12px 0 rgba(43, 71, 85, 0.10);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.main-nav > a img {
  height: 42px;
  margin-right: 18px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--accent);
  background: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--retro-ochre);
  color: var(--primary);
}
.cta-primary {
  background: var(--retro-ochre);
  color: var(--primary)!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 9px 28px;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 rgba(176,123,65,.09);
  border: 2px solid var(--primary);
  letter-spacing: 0.03em;
  transition: background 0.22s, color 0.15s, border 0.13s;
  text-shadow: 0 2px 0 #fff, 0 1px 0 var(--retro-mustard);
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--accent)!important;
  border-color: var(--retro-ochre);
}

/* == Mobile Burger Menu == */
.mobile-menu-toggle {
  background: var(--retro-ochre);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  position: absolute;
  right: 16px;
  top: 13px;
  z-index: 203;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-coffee);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 5px 32px 0 rgba(43,71,85,0.18);
  z-index: 208;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.61,0,.44,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px;
  font-size: 2.3rem;
  color: var(--primary);
  background: none;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-red);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 44px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  background: none;
  margin-bottom: 0;
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 2px solid var(--retro-ochre);
  transition: background 0.20s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-ochre);
  color: var(--primary);
}

/* Hide main menu nav on mobile */
@media (max-width: 1000px) {
  .main-nav ul, .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 720px) {
  .main-nav > a img {
    height: 34px;
  }
  header {
    padding-bottom: 0;
  }
  .main-nav {
    padding: 10px 8px 10px 12px;
    gap: 10px;
  }
}

/* == Hero Section == */
.hero {
  background: var(--retro-papaya);
  border: 2px dashed var(--retro-ochre);
  box-shadow: 0 8px 28px 0 rgba(186,152,87,0.09);
  position: relative;
}
.hero::after {
  content: '';
  pointer-events: none;
  position: absolute;
  bottom: 16px; left: 4vw;
  width: 90px; height: 90px;
  background: url('assets/vintage-deco.svg') center/contain no-repeat;
  opacity: 0.22;
  z-index: 2;
  display: block;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin-left: 0;
}

/* == Features Section == */
.features {
  background: var(--accent);
  border: 2px solid var(--secondary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 270px;
  padding: 20px 22px;
  background: rgba(250, 241, 230, 0.86);
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  font-size: 1rem;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--retro-mustard);
  background: var(--retro-papaya);
  box-shadow: 0 2px 10px 0 rgba(186,152,87,0.08);
  margin-bottom: 2px;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(176,123,65,.12);
  z-index: 4;
}
.feature-item h3 {
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  margin: 0 0 7px 0;
  color: var(--retro-coffee);
}

/* == Cards & Article Teasers == */
.card-container, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.card, .article-teaser {
  margin-bottom: 20px;
  position: relative;
  background: #f5ede1;
  border: 1.5px solid var(--retro-mustard);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 20px 20px 22px;
  width: 100%;
  max-width: 360px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
  transition: box-shadow .18s, transform .17s;
}
.article-teaser h3 {
  font-size: 1.06rem;
  color: var(--primary);
}
.article-teaser p {
  font-size: 0.97rem;
  color: var(--retro-coffee);
}
.article-teaser a {
  color: var(--retro-ochre);
  text-decoration: underline dashed;
  font-size: 1rem;
  padding: 0 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
  align-self: flex-start;
  transition: background 0.17s, color 0.12s;
}
.article-teaser a:hover, .article-teaser a:focus {
  background: var(--retro-mustard);
  color: var(--primary);
}
.card:hover, .article-teaser:hover {
  box-shadow: 0 8px 32px 0 rgba(176,123,65,.16);
  transform: translateY(-5px) scale(1.01);
  z-index: 5;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* == Testimonials == */
.testimonials {
  background: var(--accent);
  border: 1.5px dotted var(--retro-coffee);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 20px 22px;
  background: #fff8e7;
  color: var(--text-dark);
  border: 2px solid var(--retro-ochre);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 14px 0 rgba(176,123,65,0.06);
  margin-bottom: 20px;
  max-width: 445px;
  position: relative;
  font-size: 1.01rem;
}
.testimonial-card p {
  color: var(--text-dark);
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 0.99rem;
  color: var(--primary);
  margin-left: 20px;
  white-space: nowrap;
}

/* == Contact Section == */
.contact-short, .contact-details, .contact {
  background: var(--retro-papaya);
  border: 2px solid var(--secondary);
}
.contact-short h2, .contact-details h2, .contact h2 {
  color: var(--retro-coffee);
}
.contact-short a, .contact-details a, .contact a {
  color: var(--retro-ochre);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.14s;
}
.contact-short a:hover, .contact-details a:hover, .contact a:hover {
  color: var(--primary);
  text-decoration: underline wavy;
}

/* == Legal Page Text == */
.legal {
  background: #fffefc;
  border: 1.5px solid var(--retro-mustard);
}
.legal .text-section {
  background: rgba(253, 246, 222, 0.39);
  border-radius: var(--radius-sm);
  padding: 28px 18px 4px 10px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal ul {
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 12px;
  color: var(--retro-coffee);
}

/* == Footer == */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 30px 0 20px 0;
  border-top: 4px solid var(--retro-ochre);
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  align-items: center;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a, .footer-legal a {
  color: var(--accent);
  font-size: 1rem;
  opacity: 0.95;
  transition: color 0.17s, background 0.17s;
  padding: 0 6px;
  border-radius: var(--radius-sm);
}
.footer-nav a:hover, .footer-legal a:hover {
  background: var(--retro-ochre);
  color: var(--primary);
}
.footer-address {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-address img {
  width: 42px;
  height: 42px;
  border-radius: 17px;
  border: 2px solid var(--retro-ochre);
  background: var(--accent);
  box-shadow: 0 2px 1px 0 rgba(248,205,84,.05);
}
.footer-address p {
  color: var(--accent);
  font-size: 0.99rem;
}

/* == Cookie Consent Banner == */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff9ea;
  border-top: 2px solid var(--retro-ochre);
  box-shadow: 0 -2px 12px 0 rgba(186,152,87,0.12);
  z-index: 3005;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px 14px 22px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform .34s cubic-bezier(.63,0,.45,1), opacity .15s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--primary);
  margin-right: 18px;
  font-size: 15px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 22px;
  background: var(--retro-ochre);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  margin-top: 4px;
  box-shadow: 0 1px 8px 0 rgba(176,123,65,0.06);
  transition: background 0.16s, color 0.13s, border 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--retro-ochre);
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 18px;
  margin-left: 3px;
}

/* == Cookie Modal == */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,71,85,0.43);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .21s;
}
.cookie-modal {
  background: #faf2e7;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 0 rgba(176,123,65,0.22);
  border: 3px solid var(--retro-ochre);
  max-width: 430px;
  padding: 28px 32px 20px 32px;
  position: relative;
  animation: modalFadeIn .33s cubic-bezier(.61,0,.44,1);
  z-index: 3201;
}
@keyframes modalFadeIn {
  from {transform: scale(0.8) translateY(30px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 14px;
  color: var(--primary);
  background: var(--retro-ochre);
  border: none;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  transition: background .13s;
  cursor: pointer;
  z-index: 7;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: var(--retro-ochre);
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.cookie-category.disabled label {
  color: #ccc;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: 22px;
  padding: 8px 20px;
  background: var(--retro-ochre);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  transition: background .13s, color .13s, border .13s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--primary);
  color: var(--accent);
}

/* == SPACING & FLEX ALIGNMENT PATTERNS == */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* == RESPONSIVE DESIGN == */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
    padding: 0 10vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 16px;
  }
  .feature-grid {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .hero {
    padding: 30px 8px;
  }
  .feature-item, .card, .article-teaser, .testimonial-card {
    max-width: 98vw;
    min-width: unset;
    padding: 15px 9px 18px 14px;
  }
  .feature-grid,
  .card-container,
  .testimonial-list,
  .article-list {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .content-wrapper, .contact-short .content-wrapper {
    gap: 13px;
    padding: 0;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  section {
    margin-bottom: 36px;
    padding: 25px 7px 24px 7px;
  }
  .footer-address {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }
}
@media (max-width: 450px) {
  .cookie-banner p {
    font-size: 13.5px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 6vw 10px 8vw;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
  .cookie-modal {
    padding: 16px 4vw 18px 4vw;
    max-width: 99vw;
  }
}

/* == Misc Retro Micro-interactions == */
.feature-item:before, .card:before, .article-teaser:before {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--retro-mustard);
  top: -10px;
  left: -10px;
  opacity: 0.25;
  z-index: 1;
}
.feature-item:after, .card:after, .article-teaser:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  bottom: -9px;
  right: -9px;
  opacity: 0.19;
  z-index: 1;
}

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: var(--radius-sm);
  border: 2px solid var(--secondary);
  padding: 10px 12px;
  font-size: 0.98rem;
  background: #fffdf8;
  color: var(--primary);
  margin-bottom: 10px;
  outline: none;
  transition: border .15s;
}
input:focus, textarea:focus {
  border: 2px solid var(--retro-ochre);
  background: #fffbe0;
}

::-webkit-input-placeholder { color: #B07B41; }
::-moz-placeholder { color: #B07B41; }
:-ms-input-placeholder { color: #B07B41; }
::placeholder { color: #B07B41; }

/* == Misc == */
::selection {
  background: #F0DC82;
  color: #2B4755;
}

/* Hide visually when needed */
.sr-only {
  position: absolute;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* == Hide scrollbar for mobile menu overlay on narrow devices == */
@media (max-width: 700px) {
  .mobile-menu { overflow-y: auto; }
}
