/* ===============================================================
   Nexis Surge Frankfurt – Vintage Retro Style CSS
   Mobile-first | Only flex layouts (no grid/columns) | Responsive
   Brand Colors: #18497B (primary), #49A078 (secondary), #F4F4F8 (accent)
   Fonts: Oswald (display), Roboto (body), plus vintage alternatives
   =============================================================== */
/* ===== CSS Reset & Normalize ===== */
:root {
  --primary: #18497B;
  --secondary: #49A078;
  --accent: #F4F4F8;
  --vintage-yellow: #FCD581;
  --vintage-brown: #A47551;
  --vintage-orange: #E17A47;
  --vintage-blue-dark: #273043;
  --vintage-red: #D72638;
  --vintage-cream: #F7EFE2;
  --shadow-small: 0 2px 8px rgba(30,23,18,0.09);
  --shadow-card: 0 4px 24px rgba(80,48,12,0.10);
  --border-radius: 16px;
  --font-display: 'Oswald', 'Bebas Neue', 'Archivo Black', Arial, sans-serif;
  --font-body: 'Roboto', 'IBM Plex Sans', 'Montserrat', Arial, sans-serif;
  --vintage-font: 'Bebas Neue', 'Oswald', Impact, Arial Black, sans-serif;
}
/* Box sizing + base normalize */
*,*::before,*::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  line-height: 1.7;
  background-color: var(--vintage-cream);
  color: var(--vintage-blue-dark);
  min-height: 100vh;
  font-size: 1rem;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.21s;
}
a:hover, a:focus {
  color: var(--vintage-orange);
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.3em;
  margin: 0.5em 0 1.5em 0;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--vintage-font);
  letter-spacing: 0.03em;
  margin: 0 0 0.54em 0;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 2px 0 #FCD58144;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.12rem; }
p,li,blockquote,address {
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: var(--vintage-blue-dark);
}
blockquote {
  font-family: var(--vintage-font);
  font-size: 1.25rem;
  color: var(--primary);
  font-style: italic;
  margin: 0 0 0.6em 0;
  letter-spacing: 0.02em;
}
small { font-size: 0.95em; color: #7c6a54; }

/* ====== General Layout ====== */
.container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: none;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* ====== Spacing and Flex Patterns ====== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  background: var(--vintage-cream);
  border: 1.5px solid var(--vintage-yellow);
  padding: 24px 20px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px #A4755177, 0 1.5px 0 var(--vintage-yellow);
}
.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;
  border-radius: 12px;
  background: var(--vintage-yellow);
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
  color: var(--vintage-blue-dark);
  border-left: 6px solid var(--vintage-orange);
  max-width: 580px;
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--vintage-blue-dark);
}
.testimonial-card footer {
  font-size: 1.02em;
  font-family: var(--font-body);
  color: var(--vintage-brown);
  margin-left: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}
/* Feature grid (Index USPs etc.) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--vintage-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
  padding: 24px 16px;
  text-align: center;
  flex: 1 1 200px;
  min-width: 188px;
  max-width: 240px;
  border: 1px solid #e0d1b7;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 20px #a4755133;
}
/***** Accent & Primary backgrounds *****/
.accent-bg {
  background-color: var(--accent);
  background-image: repeating-linear-gradient(135deg, #f9efa6 0 6px, transparent 7px 18px);
}
.primary-bg {
  background: var(--primary);
  color: var(--vintage-cream);
}
.primary-bg h2, .primary-bg p, .primary-bg li { color: var(--vintage-cream); }

.cta-banner {
  border-radius: var(--border-radius);
  box-shadow: 0 6px 36px #27304333;
  margin-top: 50px;
  margin-bottom: 40px;
  padding: 35px 16px;
}
.cta-banner .cta {
  margin-top: 18px;
  font-size: 1.15rem;
}
/* ====== Buttons / CTA ====== */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.78em 1.8em;
  border-radius: 32px;
  border: none;
  text-decoration: none;
  background: var(--vintage-orange);
  color: #fff;
  text-shadow: 0 2px 6px #A4755177;
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px #d7263840;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background 0.18s, box-shadow 0.16s, transform 0.18s;
}
.cta.primary {
  background: var(--primary);
  color: #fff;
}
.cta:hover, .cta:focus {
  background: var(--vintage-red);
  color: #fffef7;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 28px #d7263833, 0 1.5px 0 #fff;
}
/* Links in buttons */
.cta a { color: inherit; text-decoration: none; }


/* ==== Header / Nav ==== */
header {
  background: var(--vintage-yellow);
  box-shadow: 0 3px 20px #A4755133;
  border-bottom: 3px solid var(--vintage-brown);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  max-height: 60px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: var(--vintage-font);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vintage-blue-dark);
  padding: 4px 8px;
  border-radius: 3px;
  position: relative;
  transition: color 0.18s, background 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
header .cta.primary {
  margin-left: 28px;
  font-size: 1.1rem;
  padding: 0.62em 1.4em;
}
.mobile-menu-toggle {
  background: var(--vintage-orange);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 5px 18px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s;
  display: none;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vintage-red);
  color: #fffef7;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f4f4fdee;
  box-shadow: 0 0 160px #18497b33;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.56,0,.56,1.15);
  padding-top: 32px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 27px;
  background: var(--vintage-red);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  padding: 7px 20px;
  cursor: pointer;
  z-index: 310;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 62px;
  width: 100%;
  align-items: flex-start;
  padding: 0 44px;
}
.mobile-nav a {
  font-family: var(--vintage-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--primary);
  background: none;
  padding: 8px 0;
  letter-spacing: 0.05em;
  transition: color 0.15s, background 0.13s;
  border-bottom: 2.5px dotted var(--vintage-brown);
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vintage-red);
  background: var(--vintage-yellow);
  border-radius: 6px;
  padding-left: 12px;
}

/* ======= HERO SECTION ======= */
.hero {
  min-height: 250px;
  background-color: var(--accent);
  background-image: repeating-linear-gradient(-45deg, #FCD58133 0 12px, transparent 14px 40px);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 36px #27304333;
  margin-bottom: 38px;
  margin-top: 18px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 36px 0 30px 0;
}
.hero h1 {
  color: var(--primary);
  font-family: var(--vintage-font);
  font-size: 2.55rem;
  text-shadow: 0 3px 0 #fcd58144;
}
.hero p {
  color: #3d2734;
  font-size: 1.18rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
/* ======= Lists Used as Schedule etc. ======= */
.upcoming-classes-list li,
.filterable-timetable li,
.latest-changes-list li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--primary);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.upcoming-classes-list strong, .filterable-timetable strong {
  color: var(--vintage-orange);
}
.latest-changes-list li {
  color: var(--vintage-blue-dark);
}


/********* BENEFIT ICONS *********/
.benefit-icons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.benefit-icons div {
  background: var(--vintage-yellow);
  border-radius: 12px;
  box-shadow: 0 2px 10px #d7263822;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-family: var(--vintage-font);
  color: var(--primary);
  font-size: 1.07rem;
  min-width: 145px;
  transition: box-shadow 0.15s;
}
.benefit-icons div:hover {
  box-shadow: 0 6px 24px var(--vintage-red);
}
.benefit-icons img {
  width: 36px;
  height: 36px;
}
/******** End Benefit Icons ******/

/* ========== CARDS & MODULARS (for future expansions) ========== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.map-snippet, .location-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--vintage-yellow);
  border-radius: 7px;
  padding: 11px 19px;
  max-width: 450px;
  margin-top: 10px;
}
.map-snippet img, .location-map img {
  width: 38px;
  height: 38px;
}
.contact-details-block {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow-small);
  padding: 14px 18px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details-block p img {
  margin-right: 6px;
  width: 22px; height: 22px;
  vertical-align: middle;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: var(--vintage-cream);
  padding: 40px 0 18px 0;
  border-top: 4px solid var(--vintage-yellow);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--vintage-yellow);
  font-family: var(--vintage-font);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vintage-orange);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-contact span {
  color: var(--vintage-cream);
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(1px 2px 1px #00000022);
}
footer small {
  font-size: 0.97em;
  color: #e7e2d0;
  letter-spacing: 0.01em;
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vintage-blue-dark);
  color: var(--vintage-yellow);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  z-index: 5001;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 28px #27304377;
  border-top: 5px solid var(--vintage-orange);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 auto;
  margin: 0;
  color: #f4f4f8;
  font-size: 1.02em;
}
.cookie-banner .cookie-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  border-radius: 7px;
  padding: 7px 18px;
  font-size: 1.05em;
  border: none;
  margin-right: 0;
  cursor: pointer;
  font-weight: bold;
  background: var(--vintage-orange);
  color: #fff;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner button:last-child {
  background: var(--vintage-yellow);
  color: var(--vintage-blue-dark);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--vintage-red);
  color: #fffef7;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--vintage-yellow);
  border: 1.8px solid var(--vintage-yellow);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--vintage-orange);
  color: #fff;
}

/* ===== Cookie Modal Overlay ===== */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #273043cc;
  z-index: 9002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.34s;
}
.cookie-modal-backdrop.hide {
  opacity: 0; pointer-events:none;
}
.cookie-modal {
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 8px 44px #A4755199;
  max-width: 420px;
  width: 95%;
  padding: 38px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 4px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px;
  right: 18px;
  background: none;
  color: var(--vintage-brown);
  border: none;
  font-size: 1.6em;
  cursor: pointer;
  z-index: 100;
  transition: color 0.13s;
}
.cookie-modal .modal-close:hover { color: var(--vintage-red); }
.cookie-modal p {
  font-size: 1em;
  color: var(--vintage-blue-dark);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category-row label {
  font-size: 1.08em;
  font-family: var(--font-display);
  color: var(--primary);
  flex: 1 1 auto;
  cursor: pointer;
}
.cookie-modal input[type=checkbox],
.cookie-modal input[type=radio] {
  width: 1.18em;
  height: 1.18em;
  accent-color: var(--vintage-orange);
  margin-right: 7px;
}
.cookie-modal .category-row .always-on {
  font-size: 1em;
  color: var(--vintage-brown);
  font-style: italic;
  margin-left: 6px;
}
.cookie-modal .cookie-modal-buttons {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-buttons button {
  font-family: var(--font-display);
  border-radius: 7px;
  padding: 7px 20px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  background: var(--vintage-orange);
  color: #fff;
  font-weight: bold;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .cookie-modal-buttons button:last-child {
  background: var(--vintage-yellow);
  color: var(--vintage-blue-dark);
}
.cookie-modal .cookie-modal-buttons button:hover, .cookie-modal .cookie-modal-buttons button:focus {
  background: var(--vintage-red);
  color: #fff;
}

/* ==== Misc Vintage/Nostalgic UI Elements ==== */
hr {
  border: 0;
  border-top: 2px dashed #D7263855;
  margin: 34px 0;
}

/* Headings as lines/frames for vintage cards */
h2::after {
  content: '';
  display: block;
  margin: 7px auto 0 auto;
  width: 70px;
  border-bottom: 4px double var(--vintage-orange);
  opacity: 0.75;
}

/**** Visual hover/micro-interaction effects ****/
.section, .accent-bg, .card, .feature-grid > div, .benefit-icons div {
  transition: box-shadow 0.21s, background 0.16s, border 0.14s;
}
.card:active, .feature-grid > div:active, .cta:active {
  filter: brightness(0.95);
  box-shadow: 0 2px 10px #a4755166;
}
input,select,textarea,button {
  font-family: var(--font-body);
  font-size: 1em;
}

/* =========== MEDIA QUERIES: RESPONSIVE (MOBILE-FIRST) =========== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .feature-grid > div { min-width: 160px; }
}
@media (max-width: 860px) {
  .container { max-width: 99vw; }
  .feature-grid { gap: 1.2rem; }
  .footer-contact { gap: 12px; flex-direction: column; }
}
@media (max-width: 768px) {
  /* Reduce font sizes for headings for mobile */
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.29rem; }
  h3 { font-size: 1.05rem; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 25px 7px;
    margin-bottom: 32px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 1.3rem;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: unset;
    width: 94vw;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta.primary {
    margin-left: 0;
    font-size: 1em;
    padding: 0.6em 1.1em;
  }
  .hero{
    margin-top: 8px;
    margin-bottom: 18px;
    border-radius: 10px;
  }
  .hero .content-wrapper {
    padding: 16px 0 20px 0;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .cta-banner {
    border-radius: 10px;
    padding: 18px 7px;
    margin-top: 21px;
    margin-bottom: 18px;
  }
  .benefit-icons {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px;
    font-size: 1em;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  footer .container {
    gap: 18px;
  }
  .mobile-nav {
    margin-top: 44px;
    padding: 0 18px;
  }
}
@media (max-width: 520px) {
  .card, .feature-grid > div, .benefit-icons div {
    padding: 14px 7px;
    font-size: 0.96em;
  }
  .testimonial-card {
    padding: 10px 5px;
    font-size: 0.95em;
  }
  .cookie-modal {
    padding: 22px 8px 17px 8px;
  }
}


/* ========== HIDE/SHOW utility classes for burger and overlays ========== */
.hide { display: none !important; }
.show { display: flex !important; }

/* ========== ACCESSIBILITY: Focus States ========== */
a:focus, button:focus, .cta:focus {
  outline: 2.5px dashed var(--vintage-red);
  outline-offset: 2px;
  z-index: 5;
}

/* Allow for <address> element styling, appeal vintage */
address {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--vintage-blue-dark);
  font-size: 1.08em;
  margin-bottom: 6px;
}

/* === NOSTALGIC PATTERNS (retro effects) === */
body {
  background-image: repeating-linear-gradient(135deg, #f7efe2 0 30px, #e5d6ad 31px 60px);
  background-attachment: fixed;
}
.section, .accent-bg {
  border: 2.2px solid #e5d6ad;
  box-shadow: 0 3px 28px #d7263815;
}
.cta-banner {
  border: 3.2px dashed var(--vintage-yellow);
  background-image: repeating-linear-gradient(105deg, #fcd58144 0 16px, transparent 18px 48px);
}

/* === NEWS TEASERS (for latest changes/announcements) === */
.news-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 11px 16px;
  background: var(--vintage-yellow);
  border-radius: 9px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.08em;
  box-shadow: 0 2px 12px #d7263840;
  margin: 8px 0 18px 0;
}

/* === Miscellaneous === */
::-webkit-scrollbar { width: 9px; background: #f4f4f8; }
::-webkit-scrollbar-thumb { background: #e5d6ad; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #d4c097; }

/* === PRINT SUPPORT (optional) === */
@media print {
  .main-nav,.cta.primary,.mobile-menu-toggle,.cookie-banner,footer,.mobile-menu{display:none!important;}
}

/* =============== END OF CSS =============== */
