/* =========================================================
   CSS RESET & BASELINE
========================================================= */
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, 
main, 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; height: 100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #fff;
  color: #181818;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .17s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button { cursor: pointer; background: none; }
:focus { outline: 2px solid #181818; outline-offset: 2px; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Lato:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #090909;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.18; }
h2 { font-size: 2rem; margin-bottom: 18px; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 500; }
p, ul, ol { margin-bottom: 20px; }
strong { font-weight: 700; }

body, p, li {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #282828;
  font-weight: 400;
}
a:hover, a:focus {
  color: #333;
  text-decoration: underline;
}

/* =============================
   CONTAINER
============================= */
.container {
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .content-wrapper { gap: 32px; }
}

/* =============================
   SPACING & SECTIONS
============================= */
.section, 
.hero, 
.about, 
.features, 
.cta, 
.services, 
.contact, 
.about-company {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section:last-child {
  margin-bottom: 0;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 28px rgba(0,0,0,0.10);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  min-width: 240px;
  max-width: 420px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  width: 100vw;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #111;
  padding: 4px 0 2px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .18s;
  font-weight: 500;
  position: relative;
}
.main-nav a:hover, 
.main-nav a:focus {
  color: #000;
  border-bottom: 2px solid #cfcfcf;
}
/* Hide burger by default on desktop */
.mobile-menu-toggle {
  display: none;
  background: #111;
  color: #fff;
  font-size: 2rem;
  border-radius: 6px;
  padding: 2px 16px;
  transition: background 0.14s;
  border: none;
  margin-left: 16px;
  line-height: 1;
}

/* CTA button top right */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #111;
  color: #fff;
  border-radius: 28px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  box-shadow: 0 4px 22px 0 rgba(0,0,0,0.09);
  border: 2px solid #1a1a1a;
  transition: background .18s, color .18s, border .18s, box-shadow .18s;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #111;
  border-color: #222;
  box-shadow: 0 6px 32px rgba(40,40,40,0.14);
  text-decoration: none;
}

/* =================================
    MOBILE-NAV
================================= */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(20, 20, 20, 0.96);
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.73,.09,.91,.67);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  margin: 28px 0 18px 18px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 2;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #909090;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 36px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .14s, border .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #cfcfcf;
  border-bottom: 2px solid #888;
}

@media (max-width: 1100px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Ensure CTA stays visible on mobile */
@media (max-width: 600px) {
  .logo img { height: 38px; }
  .header .container { padding: 18px 10px; }
  .btn-primary {
    display: none !important;
  }
}

/* =============================
   HERO SECTION
============================= */
.hero {
  background: #fff;
  color: #090909;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border-bottom: 1.5px solid #ebeaea;
}
.hero .container { width: 100%; }
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  gap: 16px;
}
.hero h1 {
  color: #090909;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 30px;
}
.hero .btn-primary {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .hero {
    padding: 30px 0;
    min-height: 220px;
  }
  .hero h1 { font-size: 1.47rem; }
  .hero .content-wrapper { gap: 8px; }
  .hero p { margin-bottom: 18px; }
}

/* =============================
   FEATURES & CARDS
============================= */
.features { background: #fafafa; border-bottom: 1.5px solid #ececec; }
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card, .service-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  min-width: 264px;
  max-width: 350px;
  padding: 30px 24px 32px 24px;
  box-shadow: 0 2px 32px rgba(18,18,20,0.06);
  transition: box-shadow .19s, border .19s, transform .17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-card img, .service-card img {
  height: 44px;
  width: 44px;
  margin-bottom: 12px;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.83;
}
.feature-card h3, .service-card h3 {
  font-size: 1.21rem;
  margin: 0 0 6px 0;
  color: #181818;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.feature-card p, .service-card p {
  color: #444;
  font-size: 1rem;
}
.feature-card:hover, .feature-card:focus,
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 44px rgba(14,14,10,0.13);
  border: 1.5px solid #bfbfbf;
  transform: translateY(-4px) scale(1.012);
}
/* Text under section headings */
.features h2, .services h2 {
  font-size: 1.65rem;
  color: #202020;
  margin-bottom: 16px;
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials { background: #fff; }
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #faf9f9;
  color: #181818;
  box-shadow: 0 7px 34px rgba(20,20,22,0.09);
  border: 1.5px solid #d7d7d7;
  border-radius: 14px;
  min-width: 260px;
  max-width: 400px;
  padding: 28px 22px 22px 22px;
  font-size: 1.06rem;
  margin-bottom: 20px;
  transition: border .18s, box-shadow .17s, transform .16s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 14px 50px rgba(50,50,52,0.14);
  border-color: #bababa;
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  color: #222;
}
.testimonial-info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.97rem;
  color: #606060;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-info span:first-child {
  color: #000;
  font-size: 1.14rem;
  letter-spacing: 2px;
  margin-right: 8px;
}
.testimonials h2 {
  color: #111;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { max-width: none; }
}

/* =============================
   CTA SECTION
============================= */
.cta {
  background: #181818;
  color: #fff;
  min-height: 120px;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(19,19,19,0.09);
  margin-bottom: 48px;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.cta h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 2rem;
}
.cta p {
  color: #e5e5e5;
}
.cta .btn-primary {
  margin-top: 6px;
  border: 2px solid #fafafa;
}

/* =============================
   ABOUT & CONTACT SECTIONS
============================= */
.about, .about-company {
  background: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  margin-bottom: 60px;
}
.about h2, .about-company h2 {
  color: #1b1b1b;
  margin-bottom: 12px;
}
.about ul, .about-company ul {
  margin: 0 0 20px 24px;
  list-style: disc inside;
  color: #242424;
  padding-left: 0;
}
.about ul li, .about-company ul li {
  margin-bottom: 8px;
  font-size: 1.03rem;
  color: #171717;
}
.about-company h3 { margin: 24px 0 6px 0; color: #181818; }

.contact-details {
  margin-bottom: 16px;
  background: #f7f7f7;
  padding: 18px 16px;
  border-radius: 8px;
  border: 1px solid #ededed;
  box-shadow: 0 0px 8px rgba(24,24,24,0.06);
}
.location-map {
  margin-top: 20px;
}
.map-placeholder {
  width: 96px;
  height: 96px;
  background: #edecec;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 9px;
  border: 1px solid #e5e5e5;
}

/* =============================
   SERVICE CARDS (Dienstleistungen)
============================= */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  min-width: 264px;
  max-width: 350px;
  padding: 30px 24px 32px 24px;
  box-shadow: 0 2px 24px rgba(20,20,22,0.09);
  border-radius: 11px;
  border: 1px solid #e4e4e4;
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s, border .17s, transform .16s;
}
.service-card:hover {
  box-shadow: 0 10px 36px rgba(24,24,30,0.14);
  border-color: #b7b7b7;
  transform: scale(1.012) translateY(-4px);
}

/* =============================
   FAQ BLOCK
============================= */
.faq-block {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px 22px;
  color: #344;
  border: 1px solid #e3e3e3;
  margin-top: 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.072);
}
.faq-block h3 {
  color: #202020;
  margin-bottom: 8px;
}
.faq-block ul {
  list-style: disc inside;
}
.faq-block li { margin-bottom: 10px; color: #232323; font-size: 1.01rem; }

/* =============================
   FOOTER
============================= */
footer {
  background: #181818;
  color: #fff;
  width: 100vw;
  margin-top: 80px;
}
footer .container { padding: 28px 20px 10px 20px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-contact p, .footer-menu a, .footer-copy p {
  color: #ebebeb;
  font-size: 1rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-menu a {
  color: #dadada;
  transition: color .16s, border-bottom .16s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}
.footer-copy {
  width: 100%;
  text-align: right;
  margin-top: 8px;
  font-size: 0.97rem;
  color: #b7b7b7;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  .footer-copy { text-align: left; }
}

/* =========================================
   RESPONSIVE LAYOUTS & SPACING
========================================= */
@media (max-width: 1100px) {
  .main-nav, .btn-primary {
    display: none;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .feature-grid, .service-grid { flex-direction: column; gap: 18px; }
}
@media (max-width: 700px) {
  .content-grid, .card-container, .feature-grid, .service-grid, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .section, .hero, .about, .cta, .features, .services, .about-company, .contact {
    padding: 22px 4px;
    margin-bottom: 36px;
  }
  .testimonial-card, .service-card, .feature-card {
    min-width: 0;
    max-width: 99vw;
  }
}
/* For text-image-section, force column on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* =============================
   MICRO-INTERACTIONS
============================= */
.btn-primary, .feature-card, .service-card, .testimonial-card, .mobile-menu, .mobile-menu-close, .mobile-nav a, .footer-menu a {
  transition: all .17s cubic-bezier(.64,.08,.87,1);
}
@media (hover: hover) {
  .feature-card:hover, .service-card:hover, .testimonial-card:hover {
    box-shadow: 0 10px 36px rgba(18,18,21,0.12);
    border-color: #111;
    transform: translateY(-4px) scale(1.022);
  }
  .btn-primary:hover {
    box-shadow: 0 7px 22px rgba(60,60,65,0.1);
    background: #111;
    color: #fff;
    border-color: #333;
  }
}

/* Subtle fade in */
.section, .hero, .about, .features, .cta,
.service-card, .feature-card, .testimonial-card {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp .67s forwards cubic-bezier(.72,.01,.5,1.02);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================
   COOKIE CONSENT BANNER + MODAL
=================================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #1a1a1a;
  color: #fff;
  z-index: 9999999;
  box-shadow: 0 -2px 28px rgba(10,10,12,0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 12px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  animation: fade-in-bottom .28s cubic-bezier(.8,.06,.29,.99);
}
@keyframes fade-in-bottom {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  max-width: 590px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 9px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #191919;
  font-weight: 600;
  font-size: 1.03rem;
  transition: background .14s, color .14s, box-shadow .14s, border .14s;
  box-shadow: 0 2px 14px 0 rgba(0,0,0,0.08);
  margin-left: 2px;
}
.cookie-btn:hover, .cookie-btn:focus { background: #212121; color: #fff; }
.cookie-btn.reject { background: #fff; color: #6a2626; border: 2px solid #cfcfcf; }
.cookie-btn.reject:hover { background: #f5f5f5; color: #bc0000; }
.cookie-btn.settings { background: #eaeaea; color: #161616; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -56%) scale(1);
  z-index: 99999994;
  background: #fff;
  color: #141414;
  width: 96vw; max-width: 420px;
  box-shadow: 0 10px 44px rgba(60,60,60,0.21);
  border-radius: 17px;
  padding: 32px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.00);
}
.cookie-modal h3 {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  color: #171717;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Lato', Arial, sans-serif;
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 40px; height: 22px;
  display: inline-flex; align-items: center;
}
.toggle-switch input[type="checkbox"] {
  appearance: none;
  width: 40px; height: 22px;
  margin: 0; padding: 0;
  outline: none; border: none;
  background: #cfcfcf;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background .14s;
}
.toggle-switch input[type="checkbox"]:checked {
  background: #232323;
}
.toggle-switch .slider {
  position: absolute;
  top: 1.8px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
  box-shadow: 0 1px 5px rgba(30,30,30,0.13);
}
.toggle-switch input[type="checkbox"]:checked + .slider {
  left: 20px;
}
.cookie-modal .cookie-actions {
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: none;
  color: #161616;
  border: none;
  font-size: 1.3rem;
  position: absolute;
  top: 8px; right: 18px;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #929292;
}
@media (max-width: 510px) {
  .cookie-modal { padding: 18px 6px 22px 6px; }
}

/* =============================
   MISC HTML ELEMENTS
============================= */
ul, ol {
  margin-bottom: 1.2em;
  margin-left: 18px;
}
li { margin-bottom: 5px; }
a {
  transition: color .13s;
  color: #191919;
}
h2 em, h3 em, h4 em { font-style: italic; color: #232323; }

/* =============================
   UTILS
============================= */
.hide { display: none !important; }
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.mt-16 { margin-top: 16px!important; }
.mt-32 { margin-top: 32px!important; }

/* =============================
   PRINT
============================= */
@media print {
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal { display: none !important; }
}

/* =========================================================
   MONOCHROME SOPHISTICATED
========================================================= */
body {
  background: #fff;
  color: #1a1a1a;
}
.hero,
.features,
.about,
.cta,
.services,
.contact,
.about-company,
.section {
  background: #fff;
  color: #181818;
}
footer {
  background: #151515;
}
.btn-primary {
  background: #151515;
  color: #fff;
  border: 2px solid #111;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #111;
  border: 2px solid #333;
}
.feature-card, .service-card, .testimonial-card, .faq-block {
  background: #fff;
  color: #1a1a1a;
}

/* Subtle shadows everywhere for depth */
.feature-card, .service-card {
  box-shadow: 0 2px 24px rgba(30,30,30,0.09);
}
.testimonial-card {
  box-shadow: 0 7px 34px rgba(40,40,40,0.08);
}
.faq-block {
  box-shadow: 0 0px 12px rgba(19,19,19,0.07);
}

/* =============================
   FORM ELEMENTS + MISC
============================= */
input, textarea, select {
  padding: 8px 12px;
  border: 1.5px solid #dadada;
  border-radius: 5px;
  background: #fff;
  color: #232323;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  transition: border .15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #222;
}

/* Hide scroll on open mobile menu */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

/* =============================
   ACCESSIBILITY
============================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =========================================================
 End of style.css
========================================================= */
