/* ========= 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #F4F6F2;
  color: #205E41;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #205E41;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #8EAD53;
  outline-offset: 2px;
}

/* ===== BRAND FONT IMPORTS (Web safe fallback if not loaded) ===== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Montserrat:wght@400;700&display=swap');

/* ========= COLOR VARIABLES ========= */
:root {
  --primary: #205E41;
  --secondary: #8EAD53;
  --accent: #ECDCB2;
  --white: #fff;
  --gray-bg: #F4F6F2;
  --shadow: 0 4px 16px rgba(32,94,65,.07);
  --radius-lg: 20px;
  --radius: 12px;
  --radius-sm: 8px;
  --speed: .28s;
}

/* ========= TYPOGRAPHY SYSTEM ========= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #205E41;
  letter-spacing: -1px;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom:8px; }
h5, h6 { font-size: 1rem; }

p, ul, ol, address, blockquote, cite {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #205E41;
  margin-bottom: 16px;
}
p.subheadline {
  font-size: 1.25rem;
  color: #205E41;
  font-weight: 700;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #205E41;
}

ul, ol {
  margin-bottom: 16px;
  margin-left: 24px;
  padding-left: 0;
  list-style: disc inside;
}
ul li, ol li {
  margin-bottom: 8px;
}

.text-section ul,
.text-section ol {
  margin-left: 1em;
}

blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #205E41;
  border-left: 4px solid var(--secondary);
  margin: 0 0 12px 0;
  padding: 0 0 0 24px;
}
cite {
  font-size: 0.95rem;
  color: #8EAD53;
  font-style: normal;
}

/* ========= CONTAINERS & SECTIONS ========= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius-lg);
  transition: background .15s;
}
.content-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========= FLEX LAYOUT INFRASTRUCTURE ========= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  position: relative;
  flex: 1 1 285px;
  min-width: 285px;
  transition: box-shadow var(--speed);
}
.card:hover {
  box-shadow: 0 6px 24px rgba(32,94,65,0.16);
}
.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 {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(32,94,65,.12);
  border-left: 6px solid var(--secondary);
}
.testimonial-card blockquote {
  color: #205E41;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  padding-left: 0;
}
.testimonial-card cite {
  margin-left: auto;
  color: var(--secondary);
  font-weight: 700;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 -8px 32px -8px;
  padding: 0;
}
.features-list li {
  background: var(--gray-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  min-width: 250px;
  padding: 28px 22px;
  margin: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow .2s;
}
.features-list li:hover {
  box-shadow: 0 8px 24px rgba(32,94,65,0.15);
}
.features-list img {
  height: 38px;
  width: 38px;
  filter: saturate(1.2) grayscale(0);
}
.features-list h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.features-list p {
  font-size: 0.994rem;
  margin-bottom: 0;
}

.services-preview-list,
.articles-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}
.services-preview-list li,
.articles-preview-list li {
  background: var(--gray-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  min-width: 250px;
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==== GARTENRATGEBER FLEX LAYOUTS ==== */
.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.categories-nav a {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 28px;
  transition: background .18s, color .18s;
}
.categories-nav a:hover,
.categories-nav a:focus {
  background: var(--primary);
  color: #fff;
}
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.articles-grid > div {
  flex: 1 1 260px;
  min-width: 240px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.articles-grid > div:hover {
  box-shadow: 0 8px 26px rgba(32,94,65,0.13);
}
.articles-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.articles-tiles > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px;
  margin-bottom: 20px;
  transition: box-shadow var(--speed);
}
.articles-tiles > div:hover {
  box-shadow: 0 12px 32px rgba(32,94,65,0.13);
}
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.articles-list > div {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.articles-list > div:hover {
  box-shadow: 0 8px 24px rgba(32,94,65,0.14);
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.topic-tags span {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 24px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 0.93rem;
}
.favorites-highlight {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ==== SERVICES, TESTIMONIALS & PRICES FLEX LAYOUTS ==== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.services-list > div {
  flex: 1 1 250px;
  min-width: 240px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow .15s;
}
.services-list > div:hover {
  box-shadow: 0 12px 32px rgba(32,94,65,0.16);
}
.service-details,
.price-list {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  font-size: 1.01rem;
}

.ratings-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.ratings-summary img {
  width: 32px;
  height: 32px;
}

/* ========= BUTTONS & LINKS ========= */
.cta-button {
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 34px;
  margin-top: 10px;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .15s, box-shadow .15s, transform .09s;
  box-shadow: 0 2px 12px rgba(32,94,65,.14);
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--secondary);
  color: #205E41;
  box-shadow: 0 6px 24px rgba(32,94,65,0.11);
  transform: translateY(-1px) scale(1.03);
}
.text-link {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 2px;
  font-size: 1rem;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s, border-color .2s;
}
.text-link:hover {
  color: var(--secondary);
  border-color: var(--primary);
}

/* ========= NAVIGATION & HEADER ========= */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 24px;
  height: 72px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(32,94,65,0.04);
  border-radius: 0 0 20px 20px;
  z-index: 50;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--primary);
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  margin-right: 2px;
  transition: background .16s, color .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 14px;
}

header {
  position: relative;
  z-index: 100;
  margin-bottom: 36px;
}

/* ==== MOBILE NAVIGATION (BURGER + SLIDE MENU) ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 26px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 120;
  box-shadow: 0 1px 4px rgba(32,94,65,0.15);
  transition: background .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 130;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-120%);
  transition: transform 0.35s cubic-bezier(0.53,0.01,0.27,1);
  box-shadow: 0 7px 40px rgba(32,94,65,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 0 0;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(32,94,65,0.10);
  transition: background .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 38px 0 0 34px;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  padding: 6px 0;
  border-radius: 8px;
  transition: color .14s, background .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* ========= FOOTER ========= */
footer {
  background: var(--primary);
  border-radius: 18px 18px 0 0;
  color: #fff;
  margin-top: 60px;
  box-shadow: 0 -4px 22px rgba(32,94,65,0.16);
  padding: 34px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color .16s, border-bottom .16s;
}
.footer-menu a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 48px;
  height: auto;
  margin-right: 18px;
}
.footer-contact address {
  font-style: normal;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.footer-contact a {
  color: var(--accent);
  font-weight: 700;
  transition: color .16s;
  word-break: break-all;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-contact img[alt="Telefon"],
.footer-contact img[alt="E-Mail"] {
  display: inline-block;
  width: 20px;
  vertical-align: text-bottom;
  margin-right: 8px;
}

/* ========= COOKIE CONSENT BANNER ========= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 -2px 16px rgba(32,94,65,0.12);
  padding: 22px 10px 16px 10px;
  animation: slideUpCookie 0.45s cubic-bezier(.69,.03,.22,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(111%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  text-align: center;
  max-width: 940px;
  font-size: 1.04rem;
  margin-bottom: 14px;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cookie-banner__button {
  border: none;
  border-radius: 32px;
  font-size: 1.01rem;
  font-weight: 700;
  padding: 10px 28px;
  margin-right: 4px;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .13s;
  box-shadow: 0 1px 5px rgba(32,94,65,0.08);
  outline: none;
}
.cookie-banner__button--accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner__button--accept:hover,
.cookie-banner__button--accept:focus {
  background: #fff173;
  color: var(--primary);
}
.cookie-banner__button--reject {
  background: #fff;
  color: var(--primary);
}
.cookie-banner__button--reject:hover,
.cookie-banner__button--reject:focus {
  background: #eed;
}
.cookie-banner__button--settings {
  background: transparent;
  color: #fff;
  border: 2px solid var(--secondary);
}
.cookie-banner__button--settings:hover,
.cookie-banner__button--settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ========= COOKIE MODAL ========= */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  background: #fff;
  color: var(--primary);
  padding: 34px 24px 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 60px 0 rgba(32,94,65,0.16);
  z-index: 300;
  min-width: 320px;
  max-width: 94vw;
  width: 375px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-modal__title {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal__close {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.35rem;
  line-height:1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal__body {
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-category__toggle {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal__button {
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 26px;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  transition: background .13s, color .13s;
}
.cookie-modal__button--save {
  background: var(--primary);
  color: #fff;
}
.cookie-modal__button--save:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ========= GENERAL UTILITIES ========= */
.display-flex {
  display: flex !important;
}
.gap-20 {
  gap: 20px !important;
}
.rounded {
  border-radius: var(--radius) !important;
}
.shadow {
  box-shadow: var(--shadow) !important;
}
.text-center {
  text-align: center !important;
}
.text-bold {
  font-weight: 700 !important;
}

/* ========= RESPONSIVENESS ========= */
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .features-list, .services-list, .card-container, .content-grid, .articles-grid, .articles-tiles, .articles-list {
    flex-direction: column !important;
    gap: 18px;
  }
  .main-nav { gap: 14px; padding: 0 6vw; }
  .footer-contact { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 28px 4px; margin-bottom: 40px; }
  .content-wrapper, .text-section {
    padding: 18px 10px;
  }
  .features-list, .services-preview-list, .articles-preview-list, .articles-list {
    flex-direction: column !important;
    gap: 14px;
  }
  .card-container, .card-grid, .content-grid, .articles-grid, .articles-tiles {
    flex-direction: column !important;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 14px 8px;
  }
  .topic-tags {
    gap: 6px;
  }
  .footer-menu {
    gap: 16px;
    flex-direction: column;
  }
  .footer-contact { flex-direction: column; gap: 12px; }
  .mobile-nav a { font-size: 1.13rem; }
}

@media (max-width: 650px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-contact img {
    margin-bottom: 8px;
  }
}
@media (max-width: 530px) {
  .cookie-modal {
    min-width: 0;
    padding: 22px 8px 18px 8px;
    width: 97vw;
  }
  .main-nav img {
    height: 28px;
  }
}
@media (max-width: 420px) {
  .container { padding-left: 4px; padding-right: 4px; }
}

/* ========= Z-INDEX LAYERING ======== */
header, .main-nav { z-index: 90; }
.mobile-menu { z-index: 120; }
footer { z-index: 10; }
.cookie-banner { z-index: 200; }
.cookie-modal { z-index: 300; }

/* ========= MICRO-INTERACTIONS & EFFECTS ========= */
.card, .features-list li, .services-list > div, .articles-grid > div, .articles-tiles > div, .articles-list > div {
  transition: box-shadow 0.22s, transform .13s;
}
.card:hover, .features-list li:hover, .services-list > div:hover, .articles-grid > div:hover, .articles-tiles > div:hover, .articles-list > div:hover {
  box-shadow: 0 8px 40px rgba(32,94,65,0.13);
  transform: translateY(-2px) scale(1.012);
}

.cta-button, .cookie-banner__button, .cookie-modal__button {
  transition: background .13s, color .13s, box-shadow .12s, transform .12s;
}

/* ========= CLASSIC HTML ELEMENT DEFAULTS ========= */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--secondary);
  outline: none;
  padding: 8px 10px;
  margin-bottom: 14px;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 4px rgba(32,94,65,0.18);
}
button { cursor: pointer; }

/* ========= MISSING: NATIVE HTML5 ELEMENTS ========= */
nav, footer, header, section, main, article {
  display: block;
}

/* ========= INTERACTIVE: HIDDEN STATE HELPERS ========= */
[hidden] { display:none !important; visibility: hidden !important; }

/* ========= ACCESSIBILITY ========= */
:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* ========= PRINT RESET ========= */
@media print {
  *, *:before, *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  img, svg, video { max-width: 100% !important; }
  header, footer, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  .section, .content-wrapper, .text-section {
    background: none !important;
    box-shadow: none !important;
    padding: 2px 0 !important;
    margin: 0 0 !important;
  }
}
