/* =======================================
   CSS RESET & BASELINE NORMALIZATION
======================================== */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.6;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background-color: #FAFAF7;
  color: #1C2B21;
  min-height: 100vh;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ===========================
   NATURE ORGANIC DESIGN SYSTEM
=========================== */
:root {
  --primary: #18476A;
  --secondary: #49B382;
  --accent: #FAFAF7;
  --earth-brown: #836a4b;
  --earth-tan: #F1EFE3;
  --deep-green: #256145;
  --sand: #E3DECD;
  --leaf-green: #6EB97F;
  --shadow: rgba(25,61,49,0.06);
  --text-dark: #1C2B21;
  --text-light: #F8FAF8;
  --error: #B25959;
}

body {
  background: var(--accent);
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------
   TYPOGRAPHY
------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: -1.5px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: var(--deep-green);
}
h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
  color: var(--leaf-green);
}
h4, h5, h6 {
  margin-bottom: 8px;
  color: var(--primary);
}
p, li {
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.13rem;
  color: var(--deep-green);
  margin-bottom: 18px;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
header {
  background: var(--accent);
  box-shadow: 0 3px 16px var(--shadow);
  border-bottom: 1px solid var(--earth-tan);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
  position: relative;
}
.logo img {
  height: 44px;
  width: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 40px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cta-btn.primary {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 3px 12px var(--shadow);
  letter-spacing: 0.03em;
  transition: background 0.22s, box-shadow 0.22s, transform 0.16s;
  border: 2px solid var(--leaf-green);
  margin-left: 18px;
  display: inline-block;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: var(--leaf-green);
  color: #fff;
  box-shadow: 0 6px 24px var(--shadow);
  transform: translateY(-2px) scale(1.03);
}

/* Mobile menu toggle (burger) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
  border: none;
  margin-left: 18px;
  transition: color 0.15s;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--secondary);
  outline: none;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: -6px 0 32px var(--shadow);
  transition: transform 0.32s cubic-bezier(0.77,0,0.18,1);
  transform: translateX(0);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 24px 32px 36px;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu .mobile-menu-close {
  font-size: 2.1rem;
  color: var(--error);
  background: transparent;
  border: none;
  margin-bottom: 16px;
  align-self: flex-end;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  background: var(--earth-tan);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  border-bottom: 1px solid var(--earth-tan);
  transition: background 0.13s, color 0.13s;
  width: 100%;
  border-radius: 0 14px 14px 0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* Hide desktop nav on mobile & show burger */
@media (max-width: 950px) {
  .desktop-nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}

@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===========================
  HERO SECTION
=========================== */
.hero {
  background: linear-gradient(96deg, #F1EFE3 80%, #FAFAF7 100%);
  border-radius: 0 0 80px 0/0 0 64px 0;
  margin-bottom: 60px;
  box-shadow: 0 6px 32px var(--shadow);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 320px;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px 50px 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 760px;
}
.hero h1 {
  color: var(--primary);
}
.hero .cta-btn {
  margin-top: 16px;
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--leaf-green);
  padding: 13px 38px;
  border-radius: 44px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, transform 0.12s;
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: var(--leaf-green);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ===========================
  FLEX PATTERNS & CONTENT LAYOUTS
=========================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Feature Grid on Home/Tours/About */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px var(--shadow);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
  border: 1.5px solid var(--earth-tan);
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 9px 32px var(--shadow);
  transform: translateY(-3px) scale(1.03);
  border-color: var(--secondary);
}

/* Card Containers - e.g. Story Highlights */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px;
  min-width: 260px;
  transition: box-shadow 0.15s, transform 0.14s;
  border: 1px solid var(--earth-tan);
}
.card:hover,
.card:focus {
  box-shadow: 0 6px 24px var(--shadow);
  transform: translateY(-4px);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Testimonial Cards */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--sand);
  border-radius: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 330px;
  box-shadow: 0 2px 14px var(--shadow);
  border: 1.5px solid var(--leaf-green);
  font-size: 1.09rem;
  position: relative;
  transition: box-shadow 0.13s, transform 0.13s;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.99rem;
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.testimonial-card p {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-style: italic;
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px var(--shadow);
  transform: translateY(-3px) scale(1.03);
}
.ratings-summary {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--deep-green);
  gap: 7px;
  font-weight: 600;
  background: #fff;
  padding: 8px 14px;
  border-radius: 11px;
  box-shadow: 0 2px 10px var(--shadow);
  font-size: 1.02rem;
  margin-top: 8px;
}
.testimonials h2 {
  color: var(--deep-green);
}

/* Service lists */
.service-list, .region-list, .tip-list, .resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.service-list li,
.service-item {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 13px var(--shadow);
  padding: 22px 20px;
  min-width: 200px;
  max-width: 310px;
  margin-bottom: 20px;
  border: 1px solid var(--earth-tan);
  flex: 1 1 220px;
  transition: box-shadow 0.11s, transform 0.10s;
}
.service-list li:hover,
.service-item:hover {
  box-shadow: 0 7px 28px var(--shadow);
  border-color: var(--secondary);
  transform: translateY(-3px);
}
.region-list li {
  margin-left: 0;
  line-height: 1.6;
}
.tip-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 18px 14px;
  border-radius: 16px;
  border: 1.5px solid var(--leaf-green);
  font-size: 1rem;
}
.tip-list img {
  width: 34px;
  height: 34px;
}
.resource-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 18px 14px;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 350px;
  flex: 1 1 180px;
}

/* Gallery Experience Cards */
.tour-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.experience-highlight {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 22px 18px 16px 22px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  border: 1.5px solid var(--earth-tan);
  font-size: 1.07rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  transition: box-shadow 0.17s, border 0.15s;
}
.experience-highlight:hover {
  box-shadow: 0 7px 28px var(--shadow);
  border-color: var(--secondary);
}
.experience-highlight h3 {
  color: var(--leaf-green);
}

/* Contact details section */
.contact-details .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-info {
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.08rem;
}
.contact-info img {
  width: 22px;
  margin-right: 10px;
}
.map-embed {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 18px 16px;
  min-width: 220px;
  margin-bottom: 20px;
}
.cta-row {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}
.cta-row .cta-btn {
  margin: 0;
}

/* ================
   BUTTONS & CTA  
================== */
.cta-btn {
  background: var(--deep-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 28px;
  border: none;
  border-radius: 44px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, transform 0.11s, box-shadow 0.15s;
  box-shadow: 0 3px 10px var(--shadow);
  margin-top: 6px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px var(--shadow);
}

/* ============================
   FOOTER & CONTACTS
============================ */
footer {
  background: var(--earth-tan);
  border-top: 2px solid var(--earth-brown);
  margin-top: 60px;
  padding-top: 38px;
  padding-bottom: 20px;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  transition: color 0.13s;
  padding: 3px 0;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
  color: var(--deep-green);
}
.footer-contact img {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
#cookie-consent-banner,
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  background: var(--sand);
  color: var(--primary);
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -3px 20px var(--shadow), 0 -1px 0 var(--earth-brown);
  justify-content: center;
  font-size: 1.05rem;
  animation: bannerFadeIn 0.9s cubic-bezier(0.42,0,0.65,1);
}
@keyframes bannerFadeIn {
  0% { opacity: 0; transform: translateY(88px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner span {
  max-width: 460px;
  display: inline-block;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-btn,
#cookie-accept, #cookie-reject, #cookie-settings {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 19px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 7px;
  margin-top: 0;
  transition: background 0.14s, transform 0.13s;
  box-shadow: 0 2px 10px var(--shadow);
}
.cookie-btn:last-child,
#cookie-settings:last-child {
  margin-right: 0;
}
.cookie-btn:hover,
#cookie-accept:hover,
#cookie-accept:focus,
#cookie-reject:hover,
#cookie-reject:focus,
#cookie-settings:hover,
#cookie-settings:focus {
  background: var(--leaf-green);
  color: #fff;
  transform: translateY(-1.5px);
}

/* Cookie modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1700;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 50px rgba(60, 49, 23, 0.18);
  padding: 38px 32px 28px 32px;
  min-width: 312px;
  max-width: 95vw;
  transform: translate(-50%, -50%) scale(0.94);
  animation: modalAppear 0.19s cubic-bezier(0.45,0,0.55,1);
}
@keyframes modalAppear {
  0% { transform: translate(-50%, -32%) scale(0.95); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--earth-tan);
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-category .switch input:checked + .slider {
  background: var(--leaf-green);
}
.cookie-category .slider:before {
  position: absolute;
  content: '';
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(0.42,0,0.68,1);
  box-shadow: 0 1px 4px var(--shadow);
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .modal-close {
  background: var(--error);
  color: #fff;
  border: none;
  padding: 9px 19px;
  font-size: 0.99rem;
  border-radius: 22px;
  cursor: pointer;
  margin-left: auto;
}
.cookie-modal .modal-close:hover {
  background: var(--primary);
}

/* =============================
     MISCELLANEOUS & ANIMATIONS
============================= */
::-webkit-scrollbar {
  width: 9px;
  background: var(--sand);
}
::-webkit-scrollbar-thumb {
  background: var(--leaf-green);
  border-radius: 8px;
}

hr {
  border: 0;
  height: 1px;
  background: var(--earth-tan);
  margin: 18px 0;
}

/* ===========================
   ORGANIC/NATURE VISUALS
============================ */
.section, .card, .feature-item, .testimonial-card, .service-item, .experience-highlight, .map-embed {
  border-radius: 24px 48px 20px 28px/32px 38px 32px 24px;
}

/* Organic shadow for sections */
.section, .hero, .footer, .contact-details {
  box-shadow: 0 6px 32px var(--shadow);
}

/* Subtle wavy divider (implement via SVG in real project) */
.section + .section {
  margin-top: 0px;
}

/* ===========================
   RESPONSIVE MEDIA QUERIES
=========================== */
@media (max-width: 1200px) {
  .container { max-width: 95vw; }
}
@media (max-width: 950px) {
  .feature-grid,
  .testimonial-slider,
  .service-list,
  .tour-stories,
  .footer-cols,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .about .content-wrapper, .contact-details .content-wrapper {
    flex-direction: column;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; margin-bottom: 14px; }
  h2 { font-size: 1.36rem; }
  .section {
    margin-bottom: 40px;
    padding: 26px 7vw;
  }
  .hero .container {
    padding: 32px 7vw 40px 7vw;
  }
  .footer-cols {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid, .card-container, .testimonial-slider, .feature-grid, .tour-stories {
    gap: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .contact-details .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 610px) {
  .section {
    padding: 16px 3vw;
  }
  .hero .container {
    padding: 18px 2vw 25px 2vw;
  }
  .testimonial-card, .feature-item, .service-item, .resource-list li, .experience-highlight {
    min-width: unset;
    max-width: 100%;
    padding: 15px 8px;
  }
  .ratings-summary {
    font-size: 0.99rem;
    padding: 5px 6px;
  }
}

/* ====================
    FORM ELEMENTS
=================== */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border: 1.7px solid var(--leaf-green);
  border-radius: 11px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 1rem;
  background: #F8FAF8;
  width: 100%;
  color: var(--text-dark);
  transition: border 0.14s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--secondary);
  outline: none;
}
.search-bar {
  width: 100%;
  max-width: 390px;
  margin-bottom: 18px;
}
.search-bar input {
  background: #fff;
  border: 1.5px solid var(--earth-brown);
  border-radius: 19px;
}

.destination-filter {
  margin-top: 18px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.destination-filter input {
  width: 100%;
  background: var(--earth-tan);
  border-radius: 11px;
  border: 1.7px solid var(--leaf-green);
  padding: 10px 14px;
}

/* Utility classes */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-column { display: flex; flex-direction: column; }
.mb-20 { margin-bottom: 20px!important; }
.mt-20 { margin-top: 20px!important; }

/* Hide visually, keep accessible */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px; top: auto; overflow: hidden;
}

/* ============
   Z-INDEX
============== */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal { z-index: 999999; }

/* ============
   OVERLAP/STACKING
============== */
@media (max-width: 800px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 6px 14px 6px;
    font-size: 0.97rem;
  }
}

/* ==========================
   ACCESSIBILITY STYLES
========================== */
a:focus, button:focus { outline: 2px solid var(--secondary); outline-offset: 2px; }
input:focus, textarea:focus { outline: 2px solid var(--leaf-green); outline-offset: 2px; }

/* ==========================
   END OF STYLE.CSS
========================== */
