/* ===== CSS RESET & 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F8F9FA;
  color: #214155;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
:focus {
  outline: 2px solid #B6D36B;
  outline-offset: 1px;
}

/* ===== VARIABLES ===== */
:root {
  --color-primary: #214155;
  --color-secondary: #B6D36B;
  --color-accent: #F8F9FA;
  --color-dark: #18313E;
  --color-light: #F7FBF5;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --base-radius: 14px;
  --shadow-card: 0 4px 32px rgba(33, 65, 85, 0.10), 0 2px 8px rgba(33,65,85,0.05);
  --transition-fast: 0.18s cubic-bezier(0.44,0.13,0.48,0.87);
  --transition: 0.34s cubic-bezier(0.44,0.13,0.48,0.87);
}

/* ===== TYPOGRAPHY ===== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.13;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  color: #214155;
  line-height: 1.7;
  margin-bottom: 12px;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
  color: var(--color-primary);
}
.text-section p:last-child {
  margin-bottom: 0;
}

/* Typography scale for larger screens */
@media (min-width: 770px) {
  h1, .hero h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.45rem; }
  p, li { font-size: 1.08rem; }
}

/* ===== GENERAL CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

@media (min-width: 770px) {
  .section {
    padding: 70px 0 60px 0;
  }
  .content-wrapper {
    gap: 34px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(90deg, #F8F9FA 80%, #B6D36B 100%);
  box-shadow: 0 1px 8px rgba(33,65,85,0.06);
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  padding: 5px 8px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
}
header nav a.cta {
  background: var(--color-secondary);
  padding: 8px 18px;
  color: var(--color-dark);
  font-weight: 700;
  border-radius: 30px;
  transition: background var(--transition);
  box-shadow: 0 3px 12px rgba(182, 211, 107, 0.12);
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #bde187;
  color: var(--color-primary);
}
header .mobile-menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: 12px;
  padding: 3px 8px 1px 8px;
  border: none;
  margin-left: 8px;
  transition: background 0.15s;
}
header .mobile-menu-toggle:hover { background: #aed057; }

@media (min-width: 1020px) {
  header .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 1019px) {
  header nav {
    display: none !important;
  }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #214155ee;
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 18px 32px 0 rgba(0,0,0,0.14);
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: var(--color-secondary);
  background: transparent;
  border: none;
  padding: 24px 20px 0 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover { color: #e7f8c2; }
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-left: 34px;
  margin-top: 33px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.35rem;  
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 7px;
  padding: 12px 7px 10px 7px;
  background: none;
  min-width: 190px;
  transition: background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(182,211,107,0.18);
  color: var(--color-secondary);
}

/* Hide mobile menu for desktop */
@media (min-width: 1020px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(105deg, #F8F9FA 45%, #B6D36B 100%);
  min-height: 290px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
}
.hero h1 {
  color: var(--color-primary);
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  max-width: 650px;
}

@media (min-width: 770px) {
  .hero {
    min-height: 350px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero .content-wrapper {
    gap: 20px;
  }
  .hero p { font-size: 1.25rem; }
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.feature-grid > div {
  background: var(--color-accent);
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-card);
  padding: 36px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 260px;
  flex: 1 1 220px;
  max-width: 375px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 40px rgba(33,65,85,0.17), 0 2px 12px rgba(182,211,107,0.09);
}
.feature-grid img {
  width: 49px;
  height: 49px;
  margin-bottom: 7px;
}
.feature-grid h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-family: var(--font-display);
}
.feature-grid p {
  color: var(--color-dark);
}

/* ===== TEXT SECTION & FACT HIGHLIGHTS ===== */
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 19px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-secondary);
}
@media (max-width: 768px) {
  .fact-highlights { gap: 16px; font-size: 1.04rem; }
}

/* ===== TEAM PROFILES ===== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 11px;
  margin-bottom: 10px;
}
.team-profiles > div {
  background: #e4ecd0;
  border-radius: var(--base-radius);
  box-shadow: 0 2px 10px rgba(182,211,107,0.12);
  padding: 18px 24px;
  font-size: 1rem;
  color: var(--color-dark);
  min-width: 215px;
  flex: 1 1 165px;
  margin-bottom: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 34px 20px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  background: var(--color-accent);
  margin-bottom: 20px;
  max-width: 410px;
  min-width: 210px;
}
.testimonial-card p {
  color: #18313E;
  font-size: 1.12rem;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 500;
}
/* Special highlight for testimonials in Veranstaltungsseite */
.section .testimonial-card {
  background: #F9FAFE;
  border: 1px solid #e2f0bb;
}

/* ===== PARTNER LOGOS ===== */
.partner-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  margin-top: 18px;
}
.partner-logos img {
  width: 56px;
  height: 56px;
  filter: grayscale(15%) brightness(1) contrast(1.09);
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
}
.partner-logos img:hover {
  opacity: 1;
  transform: scale(1.07) rotate(-2deg);
}

/* ===== CARDS, BLOG POSTS, ARTICLES ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 40px rgba(33,65,85,0.17), 0 2px 12px rgba(182,211,107,0.09);
  transform: translateY(-5px) scale(1.026);
}

.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.blog-post-list article {
  background: var(--color-accent);
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-card);
  padding: 20px 22px 24px 20px;
  flex: 1 1 260px;
  max-width: 370px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.blog-post-list article h3 {
  margin-bottom: 7px;
  color: var(--color-primary);
}
.blog-post-list article p {
  color: var(--color-dark);
}
.blog-post-list article a {
  margin-top: 6px;
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-display);
  transition: color var(--transition-fast);
}
.blog-post-list article a:hover, .blog-post-list article a:focus {
  color: #96b854;
  text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(100deg, #B6D36B 33%, #F8F9FA 110%);
  border-radius: 20px;
  padding: 8px 16px 8px 16px;
  box-shadow: 0 6px 45px rgba(182,211,107,0.16);
  flex-direction: column;
  align-items: center;
}
.section.cta h2, .cta h2 {
  color: #214155;
}
.cta-block{
  padding: 60px 0;
}
.section.cta p, .cta p {
  color: #214155;
}
.section.cta .cta, .cta .cta {
  margin-top: 18px;
}

/* ===== BUTTONS ===== */
.button, button[type="submit"] {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 600;
  border-radius: 26px;
  border: none;
  padding: 11px 30px;
  box-shadow: 0 3px 16px rgba(33,65,85,0.08);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
 .button:hover, button[type="submit"]:hover,
 .button:focus, button[type="submit"]:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 8px 32px rgba(182,211,107,0.18);
}

/* ===== CONTENT FLEX CONTAINERS ===== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===== EVENTS CALENDAR, BENEFIT LIST ===== */
.events-calendar ul, .benefits-list ul, .event-highlights ul {
  padding-left: 1.1em;
  font-size: 1.04rem;
  margin-bottom: 9px;
}
.events-calendar ul li, .benefits-list ul li, .event-highlights ul li {
  margin-bottom: 7px;
}
.registration-info p {
  font-size: 1.04rem;
  margin-top: 10px;
  color: var(--color-dark);
}
.event-highlights h3, .benefits-list h3 {
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(88deg, #214155 75%, #B6D36B 100%);
  color: var(--color-accent);
  padding-top: 34px; padding-bottom: 16px;
  position: relative;
  box-shadow: 0 -2px 30px rgba(33,65,85,0.06);
}
footer .content-wrapper {
  display: flex;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand img {
  width: 129px;
  margin-bottom: 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #e4ecd0;
}
.footer-contact a {
  color: #e4ecd0;
}
.footer-contact p, .footer-contact h3{
  color: #e4ecd0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #e4ecd0;
}
.footer-nav a {
  color: #e4ecd0;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
}
.footer-social {
  display: flex;
  gap: 21px;
  align-items: center;
}
.footer-social a img {
  width: 31px;
  height: 31px;
  opacity: 0.85;
  filter: grayscale(55%) brightness(1.25) contrast(1.12);
  transition: opacity 0.22s, filter 0.22s;
}
.footer-social a img:hover {
  opacity: 1;
  filter: none;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ===== LOCATION MAP ===== */
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #e4ecd0;
  border-radius: var(--base-radius);
  padding: 15px 22px;
  margin-top: 7px;
}
.location-map img {
  width: 54px;
  height: 54px;
}
.location-map p {
  color: var(--color-dark);
  font-size: 1.02rem;
  margin-bottom: 0;
}

/* ===== FEATURED ARTICLES ===== */
.featured-articles {
  margin-top: 12px;
  margin-bottom: 12px;
}
.featured-articles h3 {
  color: var(--color-primary);
}
.featured-articles ul {
  list-style: disc;
  margin-left: 1.2em;
}
.featured-articles a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  transition: color 0.18s;
}
.featured-articles a:hover { color: #aace58; }

/* ===== SECTION SPACING (MANDATORY PATTERNS) ===== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; align-items: stretch; }
  .partner-logos { flex-wrap: wrap; gap: 22px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-grid { flex-direction: column; gap: 18px; }
  .content-wrapper { gap: 19px; }
  .blog-post-list { flex-direction: column; gap: 17px; }
  .section { padding: 24px 7px; margin-bottom: 40px; }
  .section.cta, .cta { padding: 26px 6px 34px 6px; }
  .card-container { gap: 16px; }
}

/* ===== MICRO-INTERACTIONS & ANIMATIONS ===== */
.section, .feature-grid > div, .blog-post-list article, .team-profiles > div, .testimonial-card, .card {
  transition: box-shadow var(--transition), transform var(--transition);
}
.button, button[type="submit"], header nav a.cta, .mobile-nav a {
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
img, .partner-logos img, .footer-social img {
  transition: opacity 0.18s, filter 0.19s;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(88deg, #214155 75%, #B6D36B 100%);
  color: #F8F9FA;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 16px 22px 16px;
  box-shadow: 0 -2px 25px rgba(33,65,85,.18);
  z-index: 3999;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(.82,0,.09,1.08);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 2;
  font-size: 1.06rem;
  color: #F8F9FA;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner .cookie-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 19px;
  padding: 9px 18px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, transform 0.12s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #e4ecd0;
  color: var(--color-dark);
  transform: scale(1.06);
}
.cookie-banner .cookie-btn.settings {
  background: #e4ecd0;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .cookie-btn.settings:hover {
  background: #B6D36B;
  color: #18313E;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 20px 7px 18px 7px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-text, .cookie-banner .cookie-actions {
    margin-right: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed; z-index: 4999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,65,85,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #F8F9FA;
  color: #214155;
  border-radius: 19px;
  box-shadow: 0 7px 46px rgba(33,65,85,0.18);
  min-width: 320px;
  max-width: 98vw;
  padding: 36px 28px 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: popIn 0.48s cubic-bezier(.97,0,.24,1.06);
}
@media (max-width: 500px) {
  .cookie-modal { min-width: 95vw; padding: 18px 3vw 19px 4vw; }
}
.cookie-modal h2, .cookie-modal h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
}
.cookie-modal .close-btn {
  position: absolute; top: 8px; right: 10px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-secondary);
  cursor: pointer;
}
.cookie-modal .cookies-category {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 4px;
}
.cookie-modal .cookies-legend {
  font-size: 0.96rem;
  color: #476679;
  margin-bottom: 0;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== MISCELLANEOUS SPACING ===== */
.section > .container:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 16px;
}
.content-grid > * {
  margin-bottom: 20px;
}

/* ===== OVERLAY SUPPORT ===== */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ===== PRINT SUPPORT ===== */
@media print {
  header, nav, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
