/* =====================================================================
   CSS RESET & NORMALIZATION
   ===================================================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.39,.77,0,1);
}
ul, ol {
  list-style: none;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 24px;
  background: #fff;
}
th, td {
  padding: 16px 12px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
th {
  font-weight: 700;
  color: #181818;
  background: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* =====================================================================
   VARIABLES (FOR COMPATIBILITY, WITH FALLBACKS)
   ===================================================================== */
:root {
  --color-bg: #fff;
  --color-bg-dark: #181818;
  --color-card: #f5f5f5;
  --color-border: #d7d7d9;
  --color-text: #181818;
  --color-text-light: #fff;
  --color-accent: #EAF5EB;
  --color-primary: #181818;   /* Monochrome primary is black */
  --color-secondary: #6A9A6B;
  --color-shadow: rgba(24,24,24,0.09);
  --timing: 0.19s cubic-bezier(.65,.05,.64,.95);
}

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #181818;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 12px; }
.section h1, .section h2, .section h3 {
  margin-top: 0;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2e2e2e;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* Monochrome accent for h1, strong headers */
.hero h1, .cta h2 {
  color: #191919;
  letter-spacing: 0.01em;
  font-size: 2.2rem;
}

/* =====================================================================
   LAYOUT UTILITY CLASSES & .container
   ===================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 32px 28px;
  transition: box-shadow var(--timing);
  border: 1px solid #d7d7d9;
  min-width: 280px;
}
.card:hover {
  box-shadow: 0 8px 38px rgba(24,24,24,0.15), 0 1.5px 6px #ccc;
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.07);
  border: 1px solid #d7d7d9;
  min-width: 250px;
  margin-bottom: 24px;
  transition: box-shadow var(--timing), transform var(--timing);
  color: #151515;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(24,24,24,0.12);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  text-align: center;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #535353;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */
header {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(24,24,24,0.06);
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 18px;
  flex-wrap: wrap;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  color: #191919;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border 0.19s;
  letter-spacing: 0.01em;
  opacity: 0.88;
}
.main-nav a:hover, .main-nav a:focus {
  color: #191919;
  border-bottom: 2px solid #181818;
  opacity: 1;
}
.cta.primary {
  background: #101010;
  color: #fafafa;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 11px 34px;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px rgba(24,24,24,0.07);
  border: 2px solid #101010;
  transition: background 0.15s, color 0.19s, box-shadow 0.19s;
  margin-left: 14px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(24,24,24,0.06);
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #101010;
  box-shadow: 0 6px 28px rgba(24,24,24,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: #181818;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  border: 0;
  box-shadow: 0 2px 12px rgba(24,24,24,0.07);
}
.mobile-menu-toggle:active {
  background: #212121;
}

/* ------ MOBILE NAV OVERLAY ------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(24,24,24, 0.98);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.23,1.01,.32,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.3rem;
  background: transparent;
  margin: 16px;
  align-self: flex-end;
  border: 0;
  transition: transform .13s;
  cursor: pointer;
}
.mobile-menu-close:active {
  transform: scale(0.92);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  margin-top: 36px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 500;
  padding: 18px 0 18px 0;
  border-bottom: 1px solid #292929;
  opacity: 0.98;
  transition: background 0.12s, color 0.13s, opacity 0.1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EAF5EB;
  background: #202020;
  opacity: 1;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex; /* Show on mobile */
  }
}
@media (max-width: 1024px) {
  header .container {
    min-height: 54px;
    gap: 8px;
  }
  .logo img {
    height: 34px;
  }
}

/* =====================================================================
   HERO SECTIONS
   ===================================================================== */
.hero {
  background: linear-gradient(110deg, #fff 60%, #ECECEC 100%);
  padding: 40px 0 64px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.hero h1 {
  color: #191919;
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 800;
}
.hero p {
  color: #383838;
  max-width: 550px;
  font-size: 1.18rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .hero {
    padding: 56px 0 96px 0;
  }
  .hero .content-wrapper { align-items: flex-start; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.25rem; }
}

/* =====================================================================
   SECTION – FEATURES
   ===================================================================== */
.features {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 28px;
}
.feature {
  background: #f6f6f6;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(24,24,24,0.06);
  border: 1px solid #ededed;
  padding: 24px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  flex: 1 1 210px;
  max-width: 290px;
  transition: box-shadow .2s, transform .18s;
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.015em;
}
.feature p {
  font-size: 0.99rem;
  color: #434343;
}
.feature:hover {
  box-shadow: 0 8px 28px rgba(24,24,24,0.10);
  transform: translateY(-5px) scale(1.015);
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    max-width: 100%;
    min-width: 140px;
  }
}

/* =====================================================================
   SECTION – ABOUT, TIMELINE, VALUES, PROCESS, FAQ
   ===================================================================== */
.about, .timeline, .values, .process, .faq, .articles, .categories, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
.about ul,
.timeline ul,
.values ul,
.process ul,
.faq ul,
.articles ul,
.categories ul,
.contact ul,
.legal ul {
  margin-bottom: 16px;
  list-style: none;
}
.about ul li,
.timeline ul li,
.values ul li,
.process ul li,
.faq ul li,
.articles ul li,
.categories ul li,
.contact ul li,
.legal ul li {
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.values ul li img, .about ul li img, .contact ul li img {
  margin-right: 8px;
  height: 22px;
}
.values ul li strong, .about ul li strong {
  color: #191919;
}
.about h1, .about h2, .about h3, .timeline h2, .values h2 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #101010;
}

/* =====================================================================
   SECTION – SERVICE LIST
   ===================================================================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-list li {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 1px 12px rgba(24,24,24,0.06);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li img {
  height: 32px;
  width: 32px;
}
.service-list h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #191919;
}
.service-highlight {
  font-size: 1.01rem;
  font-style: italic;
  color: #363636;
  margin-top: 5px;
  padding: 2px 4px 2px 0;
  border-left: 3px solid #111;
}

/* =====================================================================
   SECTION – PRICING TABLE
   ===================================================================== */
.pricing table {
  margin-top: 16px;
  font-size: 1rem;
}
.pricing table th, .pricing table td {
  border-bottom: 1px solid #d7d7d9;
  padding: 15px 8px;
}
.pricing table th {
  background: #f5f5f5;
}
.pricing ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.pricing ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 9px; height: 9px;
  background: #222;
  border-radius: 50%;
}

/* =====================================================================
   SECTION – ARTICLES, CATEGORIES, CATEGORY GRID
   ===================================================================== */
.articles ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.articles ul li {
  background: #f6f6f6;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(24,24,24,0.04);
  padding: 22px 18px;
  font-size: 1.1rem;
  color: #202021;
  border: 1px solid #ededed;
  transition: box-shadow .22s, transform .18s;
}
.articles ul li:hover {
  box-shadow: 0 6px 22px rgba(24,24,24,0.08);
  transform: translateY(-2px);
}
.categories .category-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: flex-start;
}
.category {
  flex: 1 1 160px;
  min-width: 155px;
  max-width: 270px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 11px;
  box-shadow: 0 1px 10px rgba(24,24,24,0.06);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .16s, transform .16s;
}
.category img {
  width: 34px;
  height: 34px;
}
.category h3 {
  font-size: 1.13rem;
  color: #2a2a2a;
}
.category:hover {
  box-shadow: 0 8px 32px rgba(24,24,24,0.13);
  transform: scale(1.022);
  z-index: 2;
}

/* =====================================================================
   SECTION – CTA
   ===================================================================== */
.cta {
  background: #181818;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(24,24,24,0.13);
  margin-bottom: 60px;
  padding: 45px 0px;
}
.cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta p {
  color: #e2e2e2;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.cta.primary {
  background: #fff;
  color: #181818;
  border: 2px solid #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #191919;
  color: #fff;
  border: 2px solid #191919;
}
.cta img {
  height: 19px;
  margin-right: 7px;
}

/* =====================================================================
   SECTION – FOOTER
   ===================================================================== */
footer {
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
  padding: 30px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 34px;
}
.footer-brand span {
  color: #191919;
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #202021;
  opacity: 0.85;
  font-size: 1rem;
  transition: color 0.11s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #181818;
  opacity: 1;
}
.footer-contact p {
  color: #454545;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact img {
  height: 15px;
  margin-right: 2px;
  position: relative;
  top: 2px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid #e1e1e1;
  box-shadow: 0 -2px 20px rgba(24,24,24,0.13);
  z-index: 120;
  padding: 19px 19px 18px 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.01rem;
  animation: cookieFadeIn .5s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 22px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding: 8px 30px;
  font-size: 1rem;
  margin: 0;
  transition: background .13s, color .15s, box-shadow .17s;
  outline: none;
  border: 2px solid #181818;
  background: #181818;
  color: #fafafa;
  box-shadow: 0 2px 8px rgba(24,24,24,0.06);
}
.cookie-banner button.cookie-reject {
  border: 2px solid #ababab;
  background: #fff;
  color: #141414;
}
.cookie-banner button.cookie-settings {
  border: 2px solid #232323;
  background: #fff;
  color: #1a1a1a;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #181818;
}
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-settings:hover {
  background: #141414;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 130;
  background: rgba(24,24,24,0.56);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: cookieModalIn .33s;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 95vw;
  box-shadow: 0 6px 32px rgba(24,24,24,0.20);
  padding: 36px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  font-weight: 800;
  color: #181818;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  background: #f8f8f8;
  padding: 10px 14px 10px 14px;
  border-radius: 10px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #191919;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: transparent;
  color: #181818;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-content .cookie-modal-close:hover {
  color: #363636;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 15px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-content button {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid #222;
  background: #181818;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
  transition: background .13s, color .15s, box-shadow .17s;
  box-shadow: 0 3px 14px rgba(24,24,24,0.06);
}
.cookie-modal-content button.cookie-cancel {
  background: #fff;
  color: #1a1a1a;
}
.cookie-modal-content button.cookie-cancel:hover, .cookie-modal-content button.cookie-cancel:focus {
  background: #181818; color: #fff;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #fff; color: #181818;
}

/* =====================================================================
   RESPONSIVE RULES
   ===================================================================== */
@media (max-width: 800px) {
  .hero h1, .cta h2 { font-size: 1.65rem; }
  .cta .container,
  .features .container,
  .about .container,
  .card-container,
  .content-grid,
  .category-grid,
  .feature-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .feature,
  .category,
  .card {
    min-width: 100px;
    max-width: 100%;
  }
  .cta { padding: 30px 0; }
  .section { padding: 25px 7px; margin-bottom: 34px; }
  .testimonial-card { min-width: 180px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.02rem; }
  .container { padding-left: 3px; padding-right: 3px; }
  .hero .container { padding-left: 2px; padding-right: 2px; }
  .cta .container { padding-left: 2px; padding-right: 2px; }
  .section { padding-left: 2px; padding-right: 2px; }
}

/* =====================================================================
   VISUAL DETAILS (SHADOWS, DIVIDERS, ETC.)
   ===================================================================== */
hr {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 36px 0 26px 0;
}

/* =====================================================================
   INTERACTIVE ELEMENTS: HOVER, FOCUS, TRANSITIONS
   ===================================================================== */
a, button, .card, .feature, .category, .testimonial-card {
  transition: box-shadow 0.17s, color 0.12s, border 0.14s, background 0.15s, transform 0.16s;
}
a:focus, button:focus {
  outline: 2px solid #181818;
  outline-offset: 2px;
}

/* Button micro-interactions */
.cta.primary:active, .cookie-banner button:active, .cookie-modal-content button:active {
  transform: scale(0.97);
}

/* =====================================================================
   Z-INDEX MANAGEMENT (NAV, MOBILE OVERLAYS, COOKIE BANNER)
   ===================================================================== */
header { z-index: 20; }
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 120; }
.cookie-modal { z-index: 130; }

/* =====================================================================
   SPECIALS FOR TABLES & MAPS
   ===================================================================== */
.map {
  background: #ececec;
  border-radius: 10px;
  padding: 15px 13px;
  color: #464646;
  font-style: italic;
  font-size: 0.98rem;
}

/* =====================================================================
   MISCELLANEOUS
   ===================================================================== */
::-webkit-input-placeholder { color: #adadad; opacity:1; }
::-moz-placeholder { color: #adadad; opacity:1; }
:-ms-input-placeholder { color: #adadad; opacity:1; }
::placeholder { color: #adadad; opacity:1; }

[hidden] { display: none !important; }

/* =====================================================================
  PRINT (OPTIONAL MINIMAL)
   ===================================================================== */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  .section, .container { padding: 0 !important; margin: 0 !important; }
  body { color: #181818; background: #fff; }
}
