/* --- Vintage Retro CSS for Metallischer Antrieb --- */
/* --- 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,
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #f7f2e8;
  color: #05213A;
  font-family: 'Roboto', 'Arial', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
ul, ol {
  padding-left: 1.2em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 8px 12px;
  border-bottom: 1px solid #c9bba7;
}
caption {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

/* --- VINTAGE RETRO VARIABLES --- */
:root {
  --primary: #05213A;
  --secondary: #60A8DF;
  --accent: #FFDB72;
  --bg-main: #f7f2e8;
  --bg-section: #f5e8c6;
  --bg-card: #fff9e3;
  --border-card: #e8cf8d;
  --text-main: #05213A;
  --text-light: #fff;
  --text-muted: #82643b;
  --danger: #D44C40;
  --shadow-card: 0 4px 18px 0 rgba(50,34,0,.08);
  --radius-main: 18px;
  --radius-btn: 50px;
  --shadow-btn: 0 2px 10px 0 rgba(92,69,23,0.08);
}

/* --- FONTS (VINTAGE-INSPIRED) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Arial Black', 'Tahoma', sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .5px;
  text-shadow: 0 1px 0 #ffdb7270,0 2px 1px #fff9e390;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4,h5,h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 16px;
}
strong {
  color: var(--secondary);
  font-weight: 700;
}

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

/* --- HEADER --- */
header {
  background: var(--bg-section);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 1px 10px 0 #e9d4b980;
  position: relative;
  z-index: 40;
}
header .container {
  min-height: 92px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header img {
  height: 48px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', sans-serif;
}
.main-nav a {
  font-size: 1rem;
  letter-spacing: .3px;
  color: var(--primary);
  position: relative;
  padding: 6px 4px;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  text-decoration: underline wavy var(--accent) 2px;
}
.cta-button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 32px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  border: 2px solid var(--accent);
  margin-left: 18px;
  letter-spacing: 1px;
  transition: background .2s, color .2s, border-color .2s, transform .16s;
  display: inline-block;
  position: relative;
  z-index: 1;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--bg-main);
  border: none;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  box-shadow: 0 1px 5px #95b3d980;
  z-index: 120;
  transition: background .18s, box-shadow .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 2px 12px 0 #22334440;
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: var(--primary);
  color: var(--text-light);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.77,.2,.22,.92);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 1250;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--text-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 88px 0 0 32px;
  gap: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--accent);
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: #fff9e350;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
    pointer-events: none;
  }
}

/* Hide main nav and CTA on mobile, show mobile toggle */
@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* --- SECTION LAYOUT & SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
}
main > section:first-of-type {
  margin-top: 28px;
}

/* --- CARD CONTAINER FLEX --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
}

.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 {
  background: #fff;
  color: var(--primary);
  border: 2px dashed var(--accent);
  border-radius: 14px;
  box-shadow: 0 4px 12px 0 #f0cf7c6b;
  margin-bottom: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.08rem;
  flex-direction: row;
}
.testimonial-card strong {
  display: block;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03em;
  margin-top: 10px;
  text-shadow: 0 1px #ffdb7240;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 16px;
  min-width: 210px;
  max-width: 290px;
  flex: 1 1 240px;
  padding: 20px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  justify-content: flex-start;
  gap: 10px;
  transition: transform .14s, box-shadow .14s;
  position: relative;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 28px 0 #ecc95042;
}
.feature-grid img {
  margin-bottom: 14px;
  width: 42px;
  filter: sepia(0.35) brightness(1.13);
}

/* --- SERVICE CARD --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 22px 18px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 315px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  position: relative;
  transition: transform .16s, box-shadow .12s;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 48px 0 #ffdb7260;
  border-color: var(--accent);
}
.service-card img {
  width: 38px;
  margin-bottom: 10px;
}
.service-card strong {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: .99em;
  margin-top: 8px;
  margin-bottom: 0;
}

/* --- BLOG LIST --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 15px 0;
}
.blog-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 18px 16px 14px;
  flex: 1 1 290px;
  min-width: 218px;
  max-width: 352px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow .14s, transform .14s;
}
.blog-card:hover {
  box-shadow: 0 6px 32px #ffc31f35;
  transform: translateY(-3px) scale(1.01);
}

.blog-categories {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-muted);
  font-size: .97em;
  margin-top: 10px;
  letter-spacing: .2px;
}
.blog-categories span {
  background: #f9eed3;
  color: var(--primary);
  padding: 2.5px 8px;
  border-radius: 5px;
}

/* --- SEARCH BAR --- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 8px 0;
}
.search-bar input[type="search"] {
  padding: 8px 12px;
  border-radius: 9px;
  border: 1.5px solid var(--border-card);
  font-size: 1rem;
  box-shadow: 0 2px 8px #f0cf7c22;
  background: #fff;
  transition: border .16s;
}
.search-bar input[type="search"]:focus {
  border-color: var(--secondary);
  outline: none;
}
.search-bar button {
  background: var(--secondary);
  border: none;
  border-radius: 7px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  transition: background .14s;
}
.search-bar button img {
  width: 18px;
  filter: invert(1) grayscale(1);
}
.search-bar button:hover, .search-bar button:focus {
  background: var(--primary);
}

/* --- TEXT SECTION --- */
.text-section {
  background: #fbf3e3;
  border-radius: var(--radius-main);
  padding: 22px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #e8cf8d22;
}
.text-section ul {
  list-style: square inside;
  margin-bottom: 6px;
  padding-left: 0;
}
.text-section li {
  margin-bottom: 7px;
}
.text-section img {
  vertical-align: middle;
  margin-right: 7px;
}

/* --- MAP SECTION --- */
.map-section {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.map-placeholder {
  background: #f8eaca;
  border: 1.5px solid #e5c273;
  border-radius: 12px;
  padding: 22px 16px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 1.07em;
}

/* --- SOCIAL LINKS --- */
.social-links {
  display: flex;
  gap: 22px;
  margin-top: 10px;
}
.social-links a {
  background: #fff9e3;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px #efd45b30;
  border: 1.5px solid var(--border-card);
  transition: background .12s, box-shadow .2s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--accent);
  box-shadow: 0 4px 18px 0 #ffc31f33;
}
.social-links img {
  width: 20px;
  height: 20px;
}

/* --- FOOTER --- */
footer {
  background: var(--bg-section);
  border-top: 3px solid var(--accent);
  padding: 36px 0 20px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-nav a {
  text-decoration: underline wavy var(--border-card) 1.5px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline wavy var(--accent) 2.5px;
}
.footer-contact {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-muted);
  font-size: .97em;
}
.footer-contact img {
  width: 16px;
  margin-right: 4px;
  vertical-align: middle;
}

/* --- CTA & CONTENT WRAPPER --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}
.content-wrapper .cta-button {
  margin-top: 10px;
}

/* --- TABLES --- */
table {
  background: #f4e5b2;
  border-radius: 8px;
  margin-top: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px #f0cf7c22;
}
th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: #eee1b7;
  color: var(--primary);
}
td {
  background: #fbf6e6;
  color: var(--primary);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9e3;
  color: var(--text-main);
  border-top: 1.5px solid var(--accent);
  box-shadow: 0 -2px 16px 0 #e5c27360;
  z-index: 1600;
  padding: 18px 10px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  min-height: 64px;
  animation: fade-in-bottom .42s;
}
@keyframes fade-in-bottom {
  0% {transform: translateY(100%); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--primary);
  margin-left: 0;
  transition: background .16s, color .16s, border .14s;
}
.cookie-banner .reject {
  background: #eee1b7;
  color: var(--danger);
  border-color: var(--danger);
}
.cookie-banner .settings {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffebeb;
  color: var(--danger);
  border-color: var(--danger);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 18px 10px;
    font-size: .97em;
    gap: 12px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 8px;
  }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(17,12,8,0.45);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .22s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff9e3;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 #ffc31f75;
  padding: 36px 30px 28px 30px;
  max-width: 388px;
  width: 90vw;
  min-width: 260px;
  color: var(--primary);
  position: relative;
  font-size: 1.07rem;
  animation: slideup .36s;
}
@keyframes slideup {
  from {transform: translateY(60px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Roboto',sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 20px;
  height: 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--text-light);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  border: none;
  font-size: 1.43rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .17s, color .17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--danger);
  color: var(--bg-main);
}
.cookie-modal .actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-modal .actions button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--accent);
  margin: 0; background: var(--accent); color: var(--primary);
  transition: all .16s;
}
.cookie-modal .actions button:hover, .cookie-modal .actions button:focus {
  background: var(--secondary);
  color: var(--text-light);
}

/* --- RESPONSIVENESS (MOBILE-FIRST) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
    gap: 0;
  }
  section, main > section {
    padding: 30px 8px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
  .feature-grid, .service-list, .blog-list, .content-grid {
    gap: 14px;
    justify-content: flex-start;
  }
  .feature-grid > div, .service-card, .blog-card {
    min-width: unset;
    max-width: unset;
    flex: 1 1 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
    font-size: .97em;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4vw;
    max-width: 100vw;
  }
  .feature-grid, .service-list, .blog-list, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .section {
    padding: 30px 4vw;
    margin-bottom: 32px;
    border-radius: 10px;
  }
  .testimonial-card, .feature-grid > div, .service-card, .blog-card {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
  .content-wrapper {
    gap: 13px;
  }
  .footer-contact {
    font-size: .9em;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: .99rem; }
  .section, main > section {
    padding: 20px 2vw;
    margin-bottom: 18px;
    border-radius: 8px;
  }
}

/* --- UTILITY CLASSES --- */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-8 { gap: 8px !important; }
.gap-20 { gap: 20px !important; }

/* --- FOCUS STATES & INTERACTIONS --- */
a, button, .cta-button, input, .footer-nav a {
  outline: none;
}
a:focus-visible, .cta-button:focus,
button:focus-visible, .footer-nav a:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 1px;
}

/* --- MICRO-INTERACTIONS (Animations) --- */
.cta-button, .service-card, .feature-grid > div, .blog-card, .testimonial-card {
  transition: box-shadow .14s, transform .13s, border-color .13s;
}

/* --- RETRO PATTERNS & DECOR --- */
section {
  background-image: repeating-linear-gradient(135deg,#f4e5b2 0px,#f7f2e8 24px,#ffdb7265 32px,#f7f2e8 40px);
  background-size: 140px 140px;
  border: 2px solid #e8cf8d85;
  border-radius: var(--radius-main);
}
section > .container > h2, section > .container > h1 {
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(90deg,#ffee64 0%,#d1e9ff 35%,#ffe39c 65%,#d1e9ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

/* --- Hide scroll when mobile menu/cookie modal open --- */
body.menu-open,
body.cookie-modal-open {
  overflow: hidden;
  touch-action: none;
}
