/* ---------------------
   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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* Set base for HTML5 elements */
article, aside, details, figcaption, figure,  
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2C2A25;
  background: #FFF8F2;
  font-size: 1rem;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #234560;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a05528;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}

/* Remove list styling - will style custom where needed */
ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
  background: none;
}
:root {
  --brand-primary: #234560;
  --brand-secondary: #A0B4BF;
  --brand-accent: #F1F4F8;
  --brand-beige: #FFF8F2;
  --brand-cream: #FCF3E0;
  --brand-mustard: #EAC669;
  --brand-sienna: #a05528;
  --brand-olive: #75724B;
  --brand-dark: #2C2A25;
  --brand-shadow: rgba(44,42,37,0.08);
  /* VINTAGE FONTS */
  --font-display: 'Montserrat', 'Century Gothic', 'Futura', Arial, sans-serif;
  --font-body: 'Roboto', 'Georgia', serif;
}

/* ---------------
   General Layout
--------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FCF3E0;
  border: 2px solid var(--brand-sienna);
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--brand-shadow);
  padding: 24px 20px;
  min-width: 260px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(160,85,40, 0.14);
  border-color: var(--brand-mustard);
}
.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: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--brand-accent);
  border-left: 5px solid var(--brand-mustard);
  border-radius: 14px 28px 14px 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px var(--brand-shadow);
  color: #2C2A25;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------
   Typography & Retro
------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #234560;
  transition: color 0.2s;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

h1 {
  font-size: 2.5rem;
  text-shadow: 1px 2px 0 var(--brand-mustard);
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--brand-sienna);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #234560;
}
h4, h5, h6 { font-size: 1.07rem; }

p, ul, ol, li {
  font-family: var(--font-body);
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.7;
}
.subheadline {
  color: var(--brand-olive);
  font-weight: 500;
  font-size: 1.22rem;
}
strong {
  color: var(--brand-sienna);
}

/* Nostalgic Bullet Points */
ul li:before {
  content: '';
  display: inline-block;
  background: var(--brand-mustard);
  width: 0.7em;
  height: 0.7em;
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

ol li {
  margin-left: 18px;
  padding-left: 0.7em;
  counter-increment: custom;
  position: relative;
}
ol {
  counter-reset: custom;
}
ol li:before {
  content: counter(custom) '.';
  color: var(--brand-sienna);
  font-weight: bold;
  position: absolute;
  left: -1.2em;
  top: 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/************
 Hero Banner
*************/
.hero {
  background: var(--brand-cream) url('../assets/pattern-vintage-wave.svg') repeat-x bottom left;
  min-height: 360px;
  padding: 60px 0 90px;
  margin-bottom: 28px;
  border-bottom: 7px double var(--brand-mustard);
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow: 2px 5px 0 var(--brand-mustard), 0 2px 0 #e2d9ac;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-family: var(--font-body);
  font-size: 1.18rem;
  margin-bottom: 24px;
  color: var(--brand-olive);
}
.hero .cta-btn {
  margin-top: 10px;
}

/***********************
 Custom Feature Sections
***********************/
ul.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  margin-left: 0;
}
ul.feature-grid li {
  flex: 1 1 230px;
  background: var(--brand-accent);
  padding: 18px 18px 16px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--brand-mustard);
  box-shadow: 0 4px 12px var(--brand-shadow);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 1.03rem;
}
ul.feature-grid li img {
  width: 34px;
  height: 34px;
  filter: grayscale(28%) sepia(35%) saturate(0.8) hue-rotate(-16deg);
}

/*******************
 USP/Trust Section
*******************/
ul.usps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
ul.usps-list li {
  flex: 1 1 250px;
  background: #e8e3d8;
  border-left: 7px solid var(--brand-primary);
  padding: 14px 18px;
  margin-bottom: 0;
  border-radius: 9px;
  box-shadow: 0 2px 7px var(--brand-shadow);
  font-size: 1.05rem;
}

/**********************
 CTA/Banner Section
**********************/
.cta {
  background: var(--brand-mustard);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(160, 85, 40, 0.07);
  margin-bottom: 42px;
  padding: 36px 0;
}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  gap: 18px;
  align-items: center;
}
.cta p {
  font-size: 1.23rem;
  font-weight: bold;
  color: var(--brand-primary);
}

/*****************
 Button & CTAs
*****************/
.cta-btn, .card a.cta-btn, a.cta-btn {
  background: var(--brand-primary);
  color: #fff!important;
  font-family: var(--font-display);
  letter-spacing: 0.07em;
  font-size: 1.13rem;
  font-weight: 600;
  border: none;
  border-radius: 11px;
  padding: 14px 32px;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  margin: 0 7px 0 0;
  box-shadow: 0 3px 12px var(--brand-shadow);
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #a05528;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  text-shadow: 0 2px 5px rgba(44,42,37,0.09);
}

/********************
 Header & Navigation
*********************/
header {
  background: var(--brand-accent);
  border-bottom: 5px solid var(--brand-mustard);
  box-shadow: 0 2px 8px var(--brand-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 12px;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  gap: 17px;
  align-items: center;
  flex: 1 0 auto;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1.08rem;
  border-radius: 6px;
  padding: 8px 12px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-cream);
  color: var(--brand-sienna);
}
.main-nav .cta-btn {
  margin-left: 24px;
}
.mobile-menu-toggle {
  background: var(--brand-mustard);
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--brand-shadow);
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: #fff;
}

/*********************************************************
       Mobile Menu Overlay (Flex Only, Slide-In/Out)
**********************************************************/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 97vw;
  max-width: 380px;
  background: var(--brand-primary);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.77,0,.18,1);
  box-shadow: -5px 0 22px rgba(44,42,37,0.13);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 18px 18px 0 0;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-mustard);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 32px 32px 32px;
}
.mobile-nav a {
  padding: 13px 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(161,192,210,0.12);
  width: 100%;
  letter-spacing: 0.03em;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-mustard);
  background: rgba(250,238,159,0.07);
}

/*****************
 Footer
*****************/
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 47px 0 30px 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  height: 45px;
  width: auto;
  margin-right: 0;
}
.brand-info {
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: #FFEEC0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #FFEEC0;
  font-size: 1.07rem;
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--brand-mustard);
}
.small-contact-info {
  font-size: 0.98rem;
  color: #F9EFE3;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.small-contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: text-bottom;
  display: inline-block;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  filter: sepia(16%) hue-rotate(-18deg) brightness(1.1) contrast(1.08);
  transition: filter 0.14s, box-shadow 0.12s;
}
.social-links a img:hover {
  filter: sepia(43%) hue-rotate(-25deg) brightness(1.02) contrast(1.22);
  box-shadow: 0 2px 9px var(--brand-mustard);
}

/**************************
 Responsive Typography / Spacing
***************************/
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width:990px){
  header .container {
    height: auto;
    flex-wrap: wrap;
    gap: 6px;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 11px;
    font-size: 0.97rem;
  }
  .footer-brand img { height: 34px; }
}
@media (max-width: 820px) {
  .hero {
    padding: 32px 0 57px;
    min-height: 220px;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .main-nav { display: none!important; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .container {
    height: 66px;
    gap: 0;
  }
  .footer-brand img { height: 28px; }
  .section,
  .cta {
    padding: 20px 4px;
  }
  .card-container,
  .content-grid,
  ul.feature-grid,
  ul.usps-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 14px 10px;
    font-size: 0.99rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.67rem; }
  h2 { font-size: 1.15rem; }
  .footer-brand img { height: 20px; }
  .hero { min-height: 120px; padding: 19px 0 36px; }
  .cta-btn { padding: 11px 20px; font-size: 0.98rem; }
}

/************************
 Services & Cards Layout
*************************/
ul.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
ul.services-list li {
  flex: 1 1 270px;
  background: var(--brand-accent);
  border-radius: 13px;
  border: 1.7px solid var(--brand-sienna);
  padding: 22px 19px;
  box-shadow: 0 4px 15px var(--brand-shadow);
  min-width: 210px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  transition: border-color 0.16s;
}
ul.services-list li:hover {
  border-color: var(--brand-mustard);
}

/*****************
 FAQ Section
*****************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.faq-list h2 {
  font-size: 1.14rem;
  color: var(--brand-primary);
  margin-bottom: 3px;
  font-family: var(--font-display);
}
.quick-contact {
  background: var(--brand-accent);
  border: 1.5px dashed var(--brand-primary);
  padding: 18px 19px;
  border-radius: 14px;
  font-size: 1.06rem;
  margin-top: 8px;
}
.quick-contact ul {
  gap: 5px;
}
.quick-contact li {
  margin-bottom: 4px;
}
.quick-contact img {
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: text-bottom;
  margin-right: 7px;
}

/*******************
 Contact Info Block
********************/
.contact-info-block {
  background: var(--brand-accent);
  border: 1.7px solid var(--brand-sienna);
  border-radius: 13px;
  box-shadow: 0 2px 7px var(--brand-shadow);
  margin-top: 18px;
  padding: 22px 18px;
  font-size: 1.07rem;
}
.contact-info-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-block li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-info-block img {
  width: 23px;
  height: 23px;
  margin-right: 5px;
}
.contact-info-block a {
  color: var(--brand-primary);
  font-weight: 500;
  transition: color 0.15s;
}
.contact-info-block a:hover {
  color: var(--brand-sienna);
}

/**************************
 Testimonials/Reviews
***************************/
.testimonial-card {
  background: #FEFDF9;
  border-left: 6px solid var(--brand-olive);
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-size: 1.08rem;
  box-shadow: 0 6px 18px var(--brand-shadow);
  align-items: flex-start;
}
.testimonial-card strong {
  color: var(--brand-sienna);
}

/****************
 Thank You Page
****************/
.text-section a.cta-btn {
  margin-top: 20px;
}

/**********************************************
 COOKIE CONSENT BANNER & COOKIE SETTINGS MODAL
**********************************************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--brand-cream);
  border-top: 4px solid var(--brand-mustard);
  box-shadow: 0 -2px 11px rgba(34,69,96,0.11);
  padding: 18px 28px 18px 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  font-size: 1.03rem;
  animation: fadeInUp 0.8s 0s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  flex: 1 1 320px;
  color: #2C2A25;
}
.cookie-btns {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btns button {
  font-family: var(--font-display);
  padding: 10px 18px;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 7px;
  border: none;
  margin: 0;
  background: var(--brand-primary);
  color: #fff;
  transition: background 0.15s, color 0.13s;
}
.cookie-btns button.cookie-reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-btns button.cookie-settings {
  background: var(--brand-mustard);
  color: var(--brand-primary);
  border: 1px solid var(--brand-olive);
}
.cookie-btns button:hover, .cookie-btns button:focus {
  filter: brightness(0.96) contrast(1.13);
  outline: none;
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,42,37,0.31);
  align-items: center;
  justify-content: center;
}
#cookie-modal.active {
  display: flex;
  animation: fadeInUp 0.4s 0s both;
}
.cookie-modal-content {
  background: var(--brand-cream);
  min-width: 320px;
  max-width: 96vw;
  border-radius: 20px;
  border: 2.5px solid var(--brand-mustard);
  box-shadow: 0 7px 33px rgba(44,42,37,0.15);
  padding: 34px 28px 21px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin: 16px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: var(--brand-dark);
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-mustard);
  margin-right: 4px;
}
.cookie-toggle-disabled {
  accent-color: #bbb;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 18px;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  transition: background 0.15s;
}
.cookie-modal-actions button.cookie-cancel {
  background: var(--brand-sienna);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--brand-mustard);
  color: var(--brand-primary);
  outline: none;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  font-size: 1.5rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 3;
}
.cookie-modal-close:hover {
  color: var(--brand-sienna);
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 16px 10px 16px 8px;
  }
  .cookie-modal-content {
    min-width: 220px;
    max-width: 99vw;
    padding: 20px 10px 17px 10px;
  }
}

/* -------------
 Misc/Utilities
-------------- */
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }
.gap-2 { gap: 16px!important; }
.f-left { float: left; }
.f-right { float: right; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }
.rounded { border-radius: 14px!important; }

/*----------------------------
   VINTAGE/RETRO PATTERN/ACCENTS
----------------------------*/
.section {
  background: repeating-linear-gradient(
    -45deg,
    #FCF3E0 0 14px,
    #F9DD91 14px 22px,
    #FCF3E0 22px 56px
  );
  border-radius: 12px;
  border: 1.3px solid var(--brand-mustard);
  box-shadow: 0 3px 18px 5px var(--brand-shadow);
}
.section:nth-child(odd) {
  background-color: #F1F4F8;
  border-color: var(--brand-secondary);
}

/*****************************
   Subtle Animation/Microinteractions
*****************************/
.cta-btn,
.card,
ul.feature-grid li,
ul.usps-list li,
.testimonial-card,
.services-list li,
.cookie-consent-banner,
.cookie-modal-content {
  transition: box-shadow 0.15s, border 0.16s, background 0.18s, color 0.16s, transform 0.16s;
}
.cta-btn:active { transform: scale(0.98); }
.card:active { transform: scale(0.98); }

/* Focus accessibility */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed var(--brand-mustard);
  z-index: 2;
}

/* ---------------
 Hide elements from display (for js)
---------------- */
.is-hidden { display: none!important; }

/******************
 PRINT SAFETY
******************/
@media print {
  body { background: #fff; color:#222; }
  header, footer, .mobile-menu, .cookie-consent-banner { display: none!important; }
}
