/* ----------------- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  color: #27323A;
  background-color: #F5F2EB;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* ----------- BASE TYPOGRAPHY & BRAND FONTS -------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --primary: #27323A;
  --secondary: #B8B4A9;
  --accent: #F5F2EB; /* Light earth tone */
  --earth-green: #678D58;
  --earth-brown: #83796A;
  --earth-sand: #E9DDC8;
  --success: #256029;
  --error: #c0392b;
}
html, body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--accent);
  color: var(--primary);
  min-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.text-section h3,
.content-wrapper h3 {
  margin-top: 20px;
}
p, li, table, span, label {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary);
}
strong {
  font-weight: 700;
}

/* ----------- CONTAINER & GENERAL LAYOUT -------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.text-section {
  margin-bottom: 20px;
  padding: 0;
}

/* ----------- HEADER & NAVIGATION -------------- */
header {
  background-color: var(--accent);
  box-shadow: 0 2px 8px rgba(39,50,58,0.03);
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  align-items: center;
}
header nav a {
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  font-weight: 500;
}
header nav a:hover, header nav a:focus {
  background: var(--earth-sand);
  color: var(--earth-green);
  outline: none;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--earth-green);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  font-size: 1.13rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(80,108,77,.08);
  cursor: pointer;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
  margin-left: 14px;
  letter-spacing: .01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #456845;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 1px rgba(80,108,77,.16);
  color: #fff;
  outline: none;
}
header img {
  height: 48px;
  width: auto;
}

/* Burger (mobile menu button) */
.mobile-menu-toggle {
  display: none;
  background: var(--earth-brown);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 115;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(67,70,55,0.10);
  cursor: pointer;
  transition: background 0.16s, transform 0.12s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--earth-green);
  background: var(--earth-green);
}
.mobile-menu-toggle:hover {
  background: #496345;
  transform: scale(1.08);
}

/* MOBILE MENU DRAWER */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: var(--accent);
  box-shadow: -3px 0 30px 0 rgba(79,94,67,0.20);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.13,.63,1.01);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 16px 0 0;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.14s;
  width: 48px;
  height: 48px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--earth-sand);
}
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.25rem;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  color: var(--primary);
  padding: 11px 0;
  border-radius: 8px;
  width: 100%;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--earth-green);
  background: var(--earth-sand);
  outline: none;
}

/* Hide desktop nav and show burger on mobile */
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hide burger and show nav on desktop */
@media (min-width: 1021px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu, .mobile-menu.active {
    display: none !important;
  }
}

/* --------------- FOOTER ------------------------- */
footer {
  background: var(--earth-sand);
  width: 100%;
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top-left-radius: 38px 16px;
  border-top-right-radius: 38px 12px;
  box-shadow: 0 -2px 8px 0 rgba(144,144,102,0.04);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-size: 1rem;
  color: var(--earth-brown);
}
footer nav a {
  color: var(--primary);
  transition: color .14s;
}
footer nav a:hover {
  color: var(--earth-green);
}
footer p {
  font-size: .97rem;
  color: var(--earth-brown);
  margin-top: 5px;
}

/* ------------------- HERO & GENERIC SECTIONS ------------------------ */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 32px 24px 36px 18px;
}
.hero {
  background: var(--earth-sand);
  border-radius: 0 0 40px 40px;
  margin-bottom: 48px;
  box-shadow: 0 6px 38px -10px rgba(96,112,95,0.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  margin-bottom: 14px;
}
.hero p {
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* -------- FANCY ORGANIC SHAPES / ORGANIC ACCENTS --------- */
.section, section {
  /* Abstract soft shadow/texture and rounded shapes */
  box-shadow: 0 2px 18px -8px rgba(145,113,83,0.08), 0 1.5px 0 0 var(--earth-sand);
  background: var(--accent);
}

/* Only for hero, see above. */

/* ---------- CARDS & FLEX CONTAINERS  ------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 1.5px 8px -2px rgba(119,134,100, .10);
  border-radius: 24px 18px 24px 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px -5px rgba(130,156,116,0.17);
  transform: translateY(-4px) scale(1.01);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
}

/* ------- FEATURES FLEX (for Feature Grid layouts) ---------- */
.features {
  width: 100%;
}
.features .content-wrapper > h2 {
  margin-bottom: 14px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 24px 18px 24px 18px;
  box-shadow: 0 2px 8px -2px rgba(130,156,116,0.05);
  padding: 22px 18px 20px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  transition: box-shadow .2s, transform .14s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--accent);
  border-radius: 14px 8px 14px 10px;
  box-shadow: 0 1.5px 6px -2px rgba(130,156,116,0.09);
}
.feature-item h3 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--earth-green);
}
.feature-item p {
  color: var(--primary);
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 30px -7px rgba(130,156,116,0.19);
  transform: translateY(-3px) scale(1.02);
}

/* ---------- TESTIMONIALS ------------------- */
.testimonials .content-wrapper > h2, .testimonials .content-wrapper > h1 {
  margin-bottom: 14px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 24px 14px 29px 17px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px -7px rgba(111,102,72,0.14);
  flex-direction: row;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow 0.16s, transform 0.12s;
}
.testimonial-card p {
  color: var(--primary);
  margin: 0;
  flex: 1;
  font-size: 1.09rem;
  font-weight: 500;
  letter-spacing: 0;
}
.testimonial-card span {
  color: var(--earth-brown);
  min-width: 190px;
  font-size: .98rem;
  font-weight: 400;
  text-align: right;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px -8px rgba(107,173,88,0.14);
  transform: translateY(-3px) scale(1.01);
}

/* Readability/contrast */
.testimonial-card, .testimonials .testimonial-card {
  background: #fff;
  color: #27323A;
  border: 1px solid #eee;
}

/* -------------- CTA Section ------------------- */
.cta {
  background: var(--earth-green);
  color: #fff;
  border-radius: 32px 24px 36px 18px;
  box-shadow: 0 2px 18px -10px rgba(78,120,78,0.13);
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2, .cta p {
  color: #fff;
}
.cta a.cta-btn {
  margin-top: 12px;
  background: #fff;
  color: var(--earth-green);
  border: 2px solid var(--earth-green);
  transition: background .18s, color .14s, border-color .14s;
}
.cta a.cta-btn:hover, .cta a.cta-btn:focus {
  background: var(--earth-brown);
  color: #fff;
  border-color: var(--earth-brown);
}

/* -------------- CONTACT INFO ------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0 12px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--primary);
}
.contact-info img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 6px;
}
.contact-info a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.13s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--earth-green);
}

/* ----------- MAP / ORGANIC CARD FOR ADDRESS ----------- */
.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 16px 12px;
  background: var(--earth-sand);
  border-radius: 25px 22px 23px 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px -5px rgba(190,142,60,0.07);
  min-width: 140px;
  flex-wrap: wrap;
}
.map-placeholder img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-right: 8px;
}

/* SECTION SPACING & ALIGNMENT RULES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* --------------- TABLES (Preise) ------------------ */
table {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px -4px rgba(119,117,77,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
thead tr {
  background: var(--earth-sand);
}
th, td {
  padding: 14px;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px solid #e3dfd5;
  font-size: 1rem;
}
th {
  background: var(--earth-sand);
  color: var(--primary);
  font-weight: 700;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* -------------- FAQ -------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list h3 {
  color: var(--earth-green);
  font-size: 1.14rem;
  margin-bottom: 5px;
}
.faq-list p {
  margin-left: 10px;
}

/* ------------- LIST STYLES --------------- */
ul, ol {
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}
ul li:before {
  content: ''; /* use custom marker if desired */
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--earth-green);
  margin-right: 8px;
  position: absolute;
  left: -17px;
  top: 7px;
}

/* ------------- LINKS --------------- */
a {
  color: var(--earth-green);
  transition: color .13s;
}
a:hover, a:focus {
  color: #27323A;
}

/* --------------- BUTTON MICRO-INTERACTIONS -------------- */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle {
  transition: background .17s, color .14s, box-shadow .16s, transform .11s;
}
:focus {
  outline: 2px solid var(--earth-brown);
  outline-offset: 1px;
}

/* ------------- ORGANIC EFFECTS/SHADOWS ------------------ */
.card, .feature-item, .testimonial-card, .section, .cta, .map-placeholder {
  box-shadow: 0 2.5px 13px -6px rgba(109,143,101,0.12);
}

/* ------------- MEDIA QUERIES (MOBILE-FIRST) -------------- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, section, .cta {
    padding: 26px 4px;
    border-radius: 20px 14px 22px 11px;
  }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: unset;
    width: 100%;
    border-radius: 18px 9px 16px 7px;
    padding-left: 14px;
    padding-right: 14px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero {
    border-radius: 0 0 21px 21px;
    margin-bottom: 18px;
    padding: 22px 0;
    min-height: unset;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 8px;
    min-width: unset;
    padding-left: 6px;
    padding-right: 6px;
  }
  table {
    font-size: 0.97rem;
  }
  .card {
    padding: 20px 10px;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.05rem;
  }
  .footer .container {
    gap: 3px;
    padding-top: 7px;
    padding-bottom: 10px;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  footer p, footer nav {
    font-size: 0.93rem;
  }
}

/* --------------- COOKIE BANNER STYLES ----------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff4e3;
  box-shadow: 0 -2px 12px -4px rgba(128,106,50,0.14);
  border-top-left-radius: 26px 14px;
  border-top-right-radius: 26px 12px;
  z-index: 2100;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 16px 12px 16px;
  font-size: 0.97rem;
  animation: cookieBannerIn 0.5s cubic-bezier(.66, .15, .34, 1.08);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(115%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-banner-content{
  max-width: 520px;
  color: #4B432B;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
  border: none;
  background: var(--earth-green);
  color: #fff;
  transition: background 0.14s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0 2px 8px -3px rgba(61,88,67,0.08);
}
.cookie-banner .cookie-btn.accept {
  background: var(--earth-green);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--earth-brown);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--earth-green);
  border: 2px solid var(--earth-green);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--earth-green);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  filter: brightness(0.97) contrast(1.04);
  outline: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 6px 11px 6px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-banner-content {
    font-size: .97rem;
  }
  .cookie-banner button, .cookie-banner .cookie-btn {
    width: 100%;
    margin: 0 0 7px 0;
    font-size: 1rem;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(41, 52, 41, 0.38);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  animation: fadeIn .3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  min-width: 320px;
  max-width: 98vw;
  width: 420px;
  border-radius: 22px 18px 19px 16px;
  box-shadow: 0 3px 22px 2px rgba(78,120,78,0.18);
  padding: 28px 30px 18px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: var(--earth-green);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-modal-category label {
  flex: 1;
  color: var(--primary);
  font-weight: 500;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #d8e6d3;
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--earth-green);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 22px;
  transition: transform 0.16s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 11px; top: 8px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 7px;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--earth-sand);
  outline: none;
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 90vw;
    max-width: 99vw;
    padding: 18px 8px 16px 8px;
    font-size: .97rem;
  }
}

/* -------- MISC ---------- */
::-webkit-input-placeholder { color: #bdbdbd; }
::-moz-placeholder { color: #bdbdbd; }
:-ms-input-placeholder { color: #bdbdbd; }
::placeholder { color: #bdbdbd; }

[tabindex="0"]:focus, a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid var(--earth-green) !important;
  outline-offset: 1px;
}

/* --------- SCROLLBAR (subtle for modern look) ------ */
::-webkit-scrollbar {
  width: 11px; background: var(--accent);
}
::-webkit-scrollbar-thumb {
  border-radius: 9px;
  background: var(--earth-sand);
}

body::-webkit-scrollbar-thumb {
  background: var(--earth-brown);
}

/* --------- END OF CSS ----------- */
