/* ===================================================
   GartenGlück München - Sophisticated Monochrome CSS
   Modern, elegant, high-contrast, monochrome aesthetic
   BRAND FONTS: Montserrat (display), Roboto (body)
   BRAND MAIN COLORS used as accents only.
   All layouts are flexbox ONLY. NO CSS GRID OR COLUMNS.
   =================================================== */

/* ===================== 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 { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img, picture, svg, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}

/* ============= GLOBAL THEME VARIABLES & FONTS ============== */
:root {
  --color-bg: #fff;
  --color-bg-alt: #fafafa;
  --color-contrast: #181818;
  --color-mid: #888;
  --color-light: #f0f0f0;
  --color-border: #e5e5e5;
  --color-card-bg: #fff;
  --brand-green: #386641; /* Accent color - for CTAs only */
  --brand-green-light: #6A994E;
  --brand-accent: #F2E8CF;
  --shadow-elevate: 0 6px 32px -8px rgba(0,0,0,0.11), 0 1.5px 4px 0 rgba(0,0,0,0.13);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}
@media (max-width: 900px) {
  html { font-size: 15px; }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
}

body {
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-contrast);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-contrast);
  letter-spacing: -0.012em;
  line-height: 1.15;
}
h1 { font-size: 2.75rem; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.075rem; margin-bottom: 8px; }

p {
  font-size: 1.125rem;
  color: var(--color-contrast);
  line-height: 1.65;
  margin-bottom: 18px;
}
small { font-size: 0.92em; color: var(--color-mid); }
strong { font-weight: 700; }
cite { font-style: normal; color: var(--color-mid); font-size: 1em; }

.text-center { text-align: center; }
.text-section { margin-bottom: 20px; }

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 16px;
  }
}

/* =========== HEADER & NAVIGATION ================ */
header {
  background: var(--color-bg);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 26px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  display: block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 4px 0;
  transition: color .18s;
  color: var(--color-contrast);
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-green);
}
/* CTA Button Style */
.cta-primary {
  background: var(--color-contrast);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 10px 32px;
  font-size: 1.13rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: var(--shadow-elevate);
  letter-spacing: 0.04em;
  transition: background .18s, color .18s, box-shadow .25s, transform .2s;
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 14px 34px -8px rgba(56,102,65,0.19), 0 1.5px 4px rgba(0,0,0,0.11);
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: transparent;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
  border-radius: var(--radius-lg);
  padding: 9px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  margin-top: 20px;
  letter-spacing: 0.01em;
  transition: all .16s cubic-bezier(.52,.01,.6,.99);
  cursor: pointer;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-green);
  color: #fff;
  box-shadow: var(--shadow-elevate);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-contrast);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 20;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-light);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(28, 28, 28, 0.96);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.65,.03,.29,.98);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.3rem;
  padding: 11px 16px 11px 0;
  background: none;
  color: #fff;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin: 20px 16px 10px 0;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--brand-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
  margin: 24px 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-green);
}
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}

/* =============== SECTIONS, CARDS, FLEX LAYOUTS =============== */
.section, section, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section, .legal {
    margin-bottom: 38px;
    padding: 26px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevate);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.15s;
  min-width: 260px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 42px -6px rgba(56,56,56,0.16), 0 1.5px 4px 0 rgba(56,102,65,0.08);
  transform: translateY(-3px) scale(1.01);
}

.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, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.feature-grid, .service-list, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid li, .service-list li, .usp-list li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevate);
  padding: 24px 22px 20px 22px;
  min-width: 260px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--color-border);
  transition: box-shadow .13s, border .16s, transform .17s;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 16px 46px -12px rgba(28,28,28,0.16);
  border: 1.8px solid var(--color-contrast);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  align-self: flex-start;
  filter: grayscale(1) contrast(1.2);
}

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

/* =========== HERO =========================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: #fff;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-bottom: 3px solid var(--color-border);
  box-shadow: 0 8px 36px -18px rgba(15,15,20,0.08);
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
}
.hero h1 {
  letter-spacing: -0.01em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* =========== ABOUT PREVIEW / CTA / CALL TO ACTION =========== */
.about-preview, .cta, .contact-cta, .cta-form {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px -12px rgba(40,40,40,0.07);
  margin-bottom: 48px;
  padding: 38px 18px 38px 18px;
  display: flex;
  align-items: center;
}
.about-preview h2, .cta h2, .contact-cta h2, .cta-form h2 {
  color: var(--color-contrast);
  font-weight: 700;
}
.about-preview a, .cta a, .contact-cta a, .cta-form a {
  margin-top: 18px;
}

/* ============ TESTIMONIALS ====================== */
.testimonials {
  background: #fff;
  border-radius: var(--radius-md);
  padding-top: 30px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.testimonials h2 {
  color: var(--color-contrast);
  margin-bottom: 4px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 16px;
  background: #fafafa;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 18px -7px rgba(20,20,20,0.08);
  border: 1px solid var(--color-border);
  color: #222;
  position: relative;
  min-width: 260px;
  max-width: 570px;
  transition: box-shadow .13s, transform .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 18px 44px -8px rgba(50,50,50,0.13);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card p {
  color: #181818;
  font-size: 1.19rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card cite {
  color: var(--color-mid);
  font-size: 1rem;
  margin-top: 3px;
}

/* ============ FOOTER ================= */
footer {
  background: #181818;
  color: #fff;
  padding: 48px 0 0 0;
  margin-top: 32px;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav.footer-menu {
  display: flex;
  gap: 12px;
}
footer nav.footer-menu a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  transition: color 0.14s, opacity 0.14s;
  padding: 4px 0;
}
footer nav.footer-menu a:hover, footer nav.footer-menu a:focus { color: var(--brand-green); opacity: 1; }
.footer-contact p, .footer-contact a {
  color: #ccc;
  font-size: 0.97rem;
  margin-bottom: 7px;
}
.footer-contact a { text-decoration: underline; }
.footer-social {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
}
.footer-social img { width: 28px; height: 28px; filter: grayscale(1) brightness(1.2); opacity: 0.85; transition: filter .14s, opacity .13s; }
.footer-social img:hover { filter: none; opacity: 1; }
.footer-social span { font-size: 0.97rem; color: #ccc; margin-right: 5px; }

@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; gap: 32px; align-items: flex-start; }
}

/* =============== LEGAL PAGE STYLES ==================== */
.legal h1, .legal h2, .legal h3 { color: var(--color-contrast); }
.legal h1 { margin-bottom: 18px; }
.legal h2 { margin-bottom: 10px; font-size: 1.5rem; }
.legal h3 { font-size: 1.18rem; margin-bottom: 8px; }
.legal ul, .legal ol {
  margin: 13px 0 24px 24px; padding-left: 10px;
}
.legal li {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--color-contrast);
}
.legal a { color: var(--brand-green); text-decoration: underline; }
.legal a:hover, .legal a:focus { color: var(--brand-green-light); }

/* =============== COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(28,28,28,0.99);
  color: #fff;
  z-index: 3001;
  box-shadow: 0 -4px 48px -20px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  gap: 32px;
  animation: cookieBannerFadeIn .6s cubic-bezier(.1,.67,.42,1);
}
@keyframes cookieBannerFadeIn {
  from { transform: translateY(60px); opacity: 0 }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.05rem;
  margin: 0;
  max-width: 420px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-left: 24px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  outline: none;
  padding: 10px 24px;
  margin: 0 2px;
  box-shadow: 0 4px 16px -7px rgba(0,0,0,0.10);
  background: #fff;
  color: #181818;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-banner button.accept {
  background: var(--brand-green);
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #222;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: var(--color-contrast);
  border: 2px solid var(--brand-green);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #dadada; color: var(--color-contrast);
}
.cookie-banner button.settings {
  background: var(--brand-accent);
  color: #181818;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #e9e6dc;
  color: #181818;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 8px; gap: 14px; }
  .cookie-banner .cookie-buttons { margin-left: 0; }
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.92);
  z-index: 3003;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s cubic-bezier(.4,.21,.45,1);
}
.cookie-modal-inner {
  background: #fff;
  color: #181818;
  border-radius: var(--radius-xl);
  padding: 34px 28px 28px 28px;
  box-shadow: 0 8px 40px -12px rgba(0,0,0,0.18);
  min-width: 320px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalIn .6s cubic-bezier(.21,.7,.46,1);
  position: relative;
}
@keyframes cookieModalIn {
  from { transform: scale(0.91) translateY(50px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 2rem;
  background: none;
  color: #999;
  border: none;
  cursor: pointer;
  z-index: 3100;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #181818;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #181818;
}
.cookie-toggle {
  width: 41px;
  height: 24px;
  background: #eaeaea;
  border-radius: 999px;
  position: relative;
  margin-left: 8px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  position: absolute; left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #bbb;
  border-radius: 50%;
  transition: left .18s, background .16s;
}
.cookie-toggle input:checked + span {
  left: 19px;
  background: var(--brand-green);
}
.cookie-category.essential label {
  color: var(--brand-green);
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle {
  filter: grayscale(1) brightness(1.1);
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
}
.cookie-modal-actions button {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  outline: none;
  border: none;
  /* background colors below for differentiation */
  background: var(--brand-green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 16px -8px rgba(0,0,0,0.10);
  transition: background 0.16s;
}
.cookie-modal-actions .reject {
  background: #fff;
  color: var(--color-contrast);
  border: 2px solid var(--brand-green);
}
.cookie-modal-actions .reject:hover {
  background: #dedede;
}
.cookie-modal-actions .accept {
  background: var(--brand-green); color: #fff; }
.cookie-modal-actions .accept:hover { background: #222; }
@media (max-width: 540px) {
  .cookie-modal-inner { padding: 16px 8px 14px 8px; }
}

/* ============== ADDITIONAL LAYOUT PADDING, SPACING =========== */
section + section { margin-top: 0;}
section .container + .container { margin-top: 0;}

/* Ensure all content cards and sections have minimum 20px margin */
.card, .feature-grid li, .service-list li, .usp-list li, .testimonial-card {
  margin-bottom: 20px;
}

/* ============== MICRO-INTERACTIONS & TRANSITIONS ============= */
a, button, .card, .feature-grid li, .service-list li, .cta-primary, .cta-secondary, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .cookie-banner button, .cookie-modal-actions button {
  transition-timing-function: cubic-bezier(.52,.01,.6,.99) !important;
}

/* =============== UTILITIES =========== */
.flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }

/* Misc styles on About/Legal text elements */
ul, ol { margin-bottom: 18px; }
li { margin-bottom: 10px; line-height: 1.44; }

/*=================== RESPONSIVE ===================*/
@media (max-width: 900px) {
  .feature-grid, .service-list, .usp-list, .content-grid, .card-container, .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid li, .service-list li, .usp-list li { min-width: 0; width: 100%; }
  .card { min-width: 0; width: 100%; }
  .testimonial-card { max-width: 99vw; }
  .container { padding: 0 10px; }
}
@media (max-width: 600px) {
  header .container { flex-direction: row; gap: 8px; min-height: 68px; padding: 0 7px; }
  header a img { height: 34px; margin-right: 10px; }
  .section, section, .legal { padding: 18px 4px; margin-bottom: 26px; }
  .about-preview, .cta, .contact-cta, .cta-form { padding: 16px 2px; }
  .card { padding: 14px 7px; }
}

/*==================== FONTS LOADING =====================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/*================== SCROLLBAR ====================*/
body, .mobile-menu, .cookie-modal {
  scrollbar-color: #333 #e5e5e5;
  scrollbar-width: thin;
}
body::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  width: 9px;
  background: #e5e5e5;
}
body::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 6px;
}

/* ============= ACCESSIBILITY FOCUS =========== */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-menu-toggle:focus {
  outline: 2px dashed var(--brand-green);
  outline-offset: 2px;
  z-index: 21000;
  background: var(--brand-accent);
}

/* Prevent content overlapping */
.card, .feature-grid li, .service-list li, .testimonial-card,.about-preview, .cta, .contact-cta, .cta-form, .section, section {
  box-sizing: border-box;
}

/* Z-INDEX SAFETY for overlays */
.mobile-menu,
.cookie-banner,
.cookie-modal {
  z-index: 11000 !important;
}
