/* ===================================================
   Lively Cascade Fitness - style.css
   Professional Corporate (blue/gray), Flexbox layout only
   ====================================================
*/

/* === CSS RESET & 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.6;
  background: #f6f8fa;
  color: #222f3e;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: #006265;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #E36512;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 28px;
}
th, td {
  border: 1px solid #CBD4DA;
  padding: 12px 18px;
  text-align: left;
  font-size: 16px;
}
th {
  background: #DAE5EA;
  font-weight: 600;
}

/* === BASE TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #004448;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1.12rem;
  font-weight: 600;
}
p, li, td, th {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: 600;
}
.subheadline {
  font-size: 1.25rem;
  color: #365469;
  max-width: 600px;
  margin-bottom: 20px;
}

/* === LAYOUT FOUNDATION === */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(18,34,46,0.05);
  display: flex;
  flex-direction: column;
}
.text-section {
  background: #f6f8fa;
  border-radius: 12px;
  padding: 36px 28px;
  margin-bottom: 24px;
}

/* === HEADER/NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,68,72,0.08);
  position: sticky;
  top: 0;
  z-index: 1002;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  color: #004448;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: #006265;
  width: 0;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #E36512;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  color: #006265;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,68,72,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  text-align: center;
  outline: none;
  text-decoration: none;
}
.btn.primary {
  background: #006265;
  color: #fff;
  border: 2px solid #006265;
  box-shadow: 0 3px 12px rgba(0,98,101,0.11);
}
.btn.primary:hover,
.btn.primary:focus {
  background: #E36512;
  color: #fff;
  border-color: #E36512;
}
.btn.secondary {
  background: #DAE5EA;
  color: #004448;
  border: 2px solid #006265;
}
.btn.secondary:hover,
.btn.secondary:focus {
  background: #fff;
  color: #E36512;
  border-color: #E36512;
  box-shadow: 0 4px 24px rgba(227,101,18,0.12);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(93deg, #DAE5EA 72%, #fff 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  box-shadow: 0 1px 8px rgba(218,229,234,0.09);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 12px;
  padding: 46px 0;
}

/* === FEATURE SECTIONS === */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 24px 0;
  align-items: stretch;
}
.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 20px 20px 18px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,68,72,0.08);
  flex: 1 1 280px;
  min-width: 240px;
}
.feature-list li img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.feature-list li h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

/* === SERVICE CARDS/GRIDS === */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0,98,101,0.07);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border: 1px solid #DAE5EA;
  transition: box-shadow 0.23s, border 0.18s;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 6px 30px rgba(0,98,101,0.14);
  border-color: #E36512;
}
.service-price {
  margin-top: 6px;
  color: #E36512;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.service-detailed-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-detailed-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(18,34,46,0.09);
  padding: 26px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 290px;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #DAE5EA;
  transition: box-shadow 0.22s, border 0.18s;
}
.service-detailed-list li:hover,
.service-detailed-list li:focus-within {
  box-shadow: 0 6px 30px rgba(0,98,101,0.17);
  border-color: #E36512;
}

.benefit-icons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 14px 0;
}
.benefit-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #004448;
  background: #f6f8fa;
  border-radius: 7px;
  padding: 20px 16px 14px 16px;
  min-width: 100px;
}
.benefit-icons li img {
  width: 36px;
  height: 36px;
}

/* === BLOG / POST === */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 0 0 24px 0;
}
.blog-filters span {
  font-weight: 500;
  color: #004448;
}
.blog-filters a {
  color: #004448;
  background: #eaf1f6;
  padding: 6px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, color 0.14s;
}
.blog-filters a.active, .blog-filters a:hover {
  background: #006265;
  color: #fff;
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(0,68,72,0.09);
  padding: 22px 18px 20px 18px;
  flex: 1 1 285px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border: 1px solid #DAE5EA;
  transition: box-shadow 0.2s, border 0.16s;
}
.blog-post:hover,
.blog-post:focus-within {
  box-shadow: 0 7px 30px rgba(0,98,101,0.13);
  border-color: #E36512;
}
.blog-post.featured {
  border-left: 5px solid #E36512;
  background: #f8f4f1;
}
.secondary-cta {
  margin-top: 16px;
  font-size: 0.97rem;
  color: #006265;
}

/* === CARDS GENERIC === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0,68,72,0.08);
  padding: 22px 20px;
  transition: box-shadow 0.2s, border 0.18s;
  border: 1px solid #DAE5EA;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 5px 26px rgba(0,98,101,0.12);
  border-color: #E36512;
}

.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;
}

/* === TESTIMONIALS === */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f6f8fa;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,68,72,0.07);
  max-width: 350px;
  min-width: 210px;
  color: #222f3e;
  border: 1px solid #DAE5EA;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card p {
  color: #004448;
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #006265;
  font-weight: 600;
  font-style: normal;
  margin-top: 6px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 7px 26px rgba(0,98,101,0.10);
  border-color: #E36512;
}

/* === TABLES === */
.pricing-table {
  margin-top: 28px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
}
.pricing-table tbody tr:nth-child(even) {
  background: #f2f7fa;
}

/* === FOOTER === */
footer {
  background: #004448;
  color: #ecf3f8;
  padding: 40px 0 20px 0;
  border-top: 4px solid #006265;
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #ecf3f8;
  font-weight: 400;
  font-size: 1.02rem;
  opacity: 0.88;
  transition: color 0.19s, opacity 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E36512;
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  color: #bed5df;
  text-align: center;
}
.footer-contact a {
  color: #bed5df;
  text-decoration: underline;
  font-weight: 500;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 14px 0;
}
.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.84;
  filter: grayscale(0.14); /* subtle corporate touch */
  transition: filter 0.18s, opacity 0.16s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0) brightness(1.1);
  opacity: 1;
}
.footer-copy {
  font-size: 0.92rem;
  color: #bed5df;
  opacity: 0.72;
  margin-top: 12px;
}

/* === MOBILE BURGER NAV === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #006265;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 10px;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 1102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e8eef2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,68,72,0.19);
  z-index: 1200;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.66,.11,.26,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 32px 24px 28px;
  gap: 32px;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #006265;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 12px;
  transition: color 0.18s;
  z-index: 1205;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #E36512;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}
.mobile-nav a {
  color: #004448;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 0;
  transition: color 0.14s, border 0.14s;
  border-bottom: 1px solid #e1ecf1;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #E36512;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 22px;
  }
  .footer-nav {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  header .container {
    gap: 10px;
  }
  .footer-nav {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  /* Hamburger nav */
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
  }
  header .btn.primary {
    display: none;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .content-wrapper, .card-container, .service-grid, .card, .content-grid, .feature-list,
  .service-detailed-list, .blog-filters, .post-list, .testimonial-slider, .testimonial-list, .benefit-icons {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .feature-list li, .service-card, .service-detailed-list li, .blog-post, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .blog-post, .testimonial-card, .service-card, .feature-list li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero .content-wrapper {
    padding: 22px 0 !important;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 540px) {
  th, td {
    font-size: 0.98rem;
    padding: 6px 4px;
  }
  .footer-contact {
    font-size: 0.88rem;
  }
  .btn {
    font-size: 0.98rem;
    padding: 11px 18px;
  }
  .footer-social img {
    width: 24px;
    height: 24px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid #006265;
  box-shadow: 0 -2px 16px rgba(0,98,101,0.12);
  z-index: 1600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 20px 21px 24px;
  font-size: 1rem;
  animation: slideUpBanner 0.56s cubic-bezier(.36,1.41,.56,1.01);
}
@keyframes slideUpBanner {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__message {
  flex: 1 1 220px;
  color: #222f3e;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #DAE5EA;
  border: 2px solid #006265;
  color: #004448;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, border 0.14s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #006265;
  color: #fff;
  border-color: #006265;
}
.cookie-btn.reject {
  background: #fff;
  color: #004448;
  border-color: #CBD4DA;
}
.cookie-btn.settings {
  background: #fff;
  color: #E36512;
  border-color: #E36512;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #E36512;
  border-color: #E36512;
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #E36512;
  color: #fff;
  border-color: #E36512;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #DAE5EA;
  color: #E36512;
  border-color: #E36512;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 15px 8px 15px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
    width: 100%;
  }
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1650;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,47,62,0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.28s cubic-bezier(.51,1.04,.59,1.01);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 9px 36px rgba(0,68,72,0.19);
  max-width: 440px;
  width: 98vw;
  padding: 36px 24px;
  color: #222f3e;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popInModal 0.32s cubic-bezier(.22,1.25,.65,1.01);
}
@keyframes popInModal {
  0% { transform: scale(0.75) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  background: #f6f8fa;
  border-radius: 6px;
  padding: 11px 10px 9px 13px;
}
.cookie-category label {
  flex: 1 1 0;
  font-weight: 600;
  color: #004448;
  margin-right: 8px;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  width: 20px; height: 20px;
  accent-color: #006265;
  margin: 0 6px 0 0;
}
.cookie-category input[disabled] {
  opacity: 0.66;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 13px; right: 18px;
  color: #E36512;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 5px;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #FDEDE4;
  color: #004448;
}

/* === MISC. CLASSES & TEXT === */
.team-snippet, .unique-approach, .benefit-descriptions,
.price-explanations, .pricing-faq, .map-location, .hours-open,
.team-bios {
  background: #f6f8fa;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.team-snippet h3, .team-bios h3, .hours-open h3, .price-explanations h3, .pricing-faq h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: #006265;
  font-weight: 600;
}

.contact-info, .contact-details {
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.contact-info a, .contact-details a {
  color: #E36512;
  font-weight: 600;
  text-decoration: underline;
}
.map-location p {
  font-style: italic;
  color: #365469;
  font-size: 0.98rem;
}
.hours-open ul {
  margin-left: 22px;
}

/* === STRONG VISUAL HIERARCHY === */
h2:not(.no-line) {
  border-left: 6px solid #006265;
  padding-left: 15px;
  background: linear-gradient(90deg, #fff 97%, #DAE5EA 100%);
}

/* === VISUAL MICRO-INTERACTIONS === */
.btn, .cookie-btn,
.mobile-menu-toggle, .mobile-menu-close, .footer-social img,
.main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, border 0.19s, filter 0.18s;
  will-change: background, color, box-shadow, border, filter;
}

/* === FOCUS VISIBLE (KEYBOARD NAV) === */
:focus-visible {
  outline: 2px solid #E36512 !important;
  outline-offset: 2px;
  z-index: 9;
}

/* hide visually while keeping available for screen-readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === PRINT FRIENDLY (optional) === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    background: #fff;
  }
}

/* === END === */
