/* ==========================================================================
   style.css — Steirisch Ursprung Theme
   Navigation, Hero, Title Bar, Feature Cards, Footer, Separators
   ========================================================================== */

/* --- Topbar (Action Bar) --- */
.topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0;
  padding-left: max(clamp(1rem, 3vw, 2rem), calc((100vw - var(--max-width, 1220px)) / 2));
  padding-right: max(clamp(1rem, 3vw, 2rem), calc((100vw - var(--max-width, 1220px)) / 2));
  background: var(--color-navbar, #206f40);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255,255,255,0.5);
}

.topbar a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.topbar a:hover { color: #fff; }

.topbar-cta {
  padding: 0.35em 1.2em;
  border: 1px solid #fff;
  background: #fff;
  color: var(--color-primary, #006633) !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 0.75rem;
  transition: all 0.2s;
  border-radius: 4px;
}

.topbar-cta:hover {
  background: var(--color-primary, #006633);
  border-color: var(--color-primary, #006633);
  color: #fff !important;
}

.topbar-right { margin-left: auto; }

/* --- Navigation: Split-Layout (Logo zentriert) --- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  background: var(--color-primary, #006633);
  min-height: 90px;
  padding: 0;
  padding-left: max(clamp(1rem, 3vw, 2rem), calc((100vw - var(--max-width, 1220px)) / 2));
  padding-right: max(clamp(1rem, 3vw, 2rem), calc((100vw - var(--max-width, 1220px)) / 2));
  transition: box-shadow 0.3s;
}

.site-nav--sticky {
  position: sticky;
  top: 0;
}

.site-nav.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  min-height: 60px;
  transition: min-height 0.3s;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width, 1220px);
  margin: 0 auto;
}

/* Logo zentriert (absolute Position) */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -45px;
  z-index: 300;
  text-decoration: none;
}

.nav-logo img {
  height: 210px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: height 0.3s;
}

.site-nav.scrolled .nav-logo {
  top: -10px;
}

.site-nav.scrolled .nav-logo img {
  height: 80px;
}

.site-nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* Nav-Links links/rechts */
.nav-left, .nav-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  gap: 0;
}

.nav-left { justify-content: flex-start; padding-right: 130px; }
.nav-right { justify-content: flex-end; padding-left: 130px; }
.nav-mobile { display: none; }

.nav-left > li > a,
.nav-right > li > a {
  display: block;
  padding: 30px 18px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-left > li > a:hover,
.nav-right > li > a:hover,
[aria-current="page"] { color: #fff; }

/* Dropdowns */
.has-children { position: relative; }

.has-children > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 200;
}

.has-children:hover > ul { display: block; }

.has-children > ul a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--color-text, #554030);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.has-children > ul a:hover {
  background: var(--color-primary, #006633);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.2s;
}

/* Sticky: Nav-Links verkleinern */
.site-nav.scrolled .nav-left > li > a,
.site-nav.scrolled .nav-right > li > a {
  padding: 18px 15px;
}

/* --- Responsive: Mobile Nav --- */
@media (max-width: 1099px) {
  .topbar { display: none; }

  .site-nav { flex-wrap: wrap; min-height: auto; padding: 0.5rem clamp(1rem, 3vw, 2rem); }
  .nav-toggle { display: block; }

  .nav-logo {
    position: relative;
    left: auto; top: auto;
    transform: none;
    padding: 0.5rem 0;
  }
  .nav-logo img { height: 60px; filter: none; }

  .nav-left, .nav-right,
  .nav-desktop { display: none !important; }

  .nav-mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
    list-style: none;
    margin: 0;
  }

  .site-nav.open .nav-mobile { display: flex; }

  .nav-mobile > li > a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .nav-mobile > li > a:hover { color: #fff; }

  /* Mobile Dropdowns: Klick-Toggle */
  .nav-mobile .has-children > ul {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,0.1);
    display: none;
  }

  .nav-mobile .has-children.open > ul { display: block; }

  .nav-mobile .has-children > ul a {
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 2rem;
  }

  .nav-mobile .has-children > ul a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
}

/* --- Hero Slider --- */
.c-hero-slider {
  position: relative;
  width: 100%;
  height: clamp(400px, 60vh, 700px);
  overflow: hidden;
  background: #111;
}

.c-hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.c-hero-slider__slide.active {
  opacity: 1;
}

.c-hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
}

.c-hero-slider__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: var(--max-width, 1220px);
  margin: 0 auto;
  color: #fff;
  z-index: 2;
}

.c-hero-slider__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.c-hero-slider__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.c-hero-slider__text {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  margin: 0 0 1.25rem;
  max-width: 600px;
  opacity: 0.9;
}

.c-hero-slider__btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.c-hero-slider__btn:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.c-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  width: 50px;
  height: 60px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}

.c-hero-slider__arrow:hover {
  background: rgba(255,255,255,0.3);
}

.c-hero-slider__arrow--prev { left: 1rem; border-radius: 4px; }
.c-hero-slider__arrow--next { right: 1rem; border-radius: 4px; }

/* --- Hero Image --- */
.c-hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 500px;
}

.c-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.c-hero-image__separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-primary);
}

/* --- Title Bar --- */
.c-title-bar {
  background-color: var(--color-warm-bg, #d5c8b9);
  padding: 2rem 0;
  text-align: center;
}

.c-title-bar__heading {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0;
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
}

.c-title-bar__subtitle {
  font-family: var(--font-body);
  color: var(--color-text);
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
}

/* --- Article --- */
.c-article__body {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.c-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.c-article__tag a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.c-article__footer {
  padding: 2rem 0 3rem;
}

.c-article__taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, color 0.2s;
}

.c-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* --- Feature Cards (3-col, BeTheme: Holztextur + beige Karten) --- */
.c-feature-cards {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: url('../images/bg-holz.jpg') center / cover no-repeat;
  background-color: #5a3e2b;
}

.c-feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width, 1220px);
  margin: 0 auto;
  padding: 0 2rem;
}

.c-feature-card {
  background: var(--color-warm-bg, #d5c8b9);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.c-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.c-feature-card__image {
  display: block;
}

.c-feature-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.c-feature-card__body {
  padding: 1.5rem 1.25rem 2rem;
}

.c-feature-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.c-feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text, #554030);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.c-feature-card__link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--color-primary, #006633);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 3px;
  transition: background 0.2s;
}

.c-feature-card__link:hover {
  background: var(--color-primary-hover, #005529);
  color: #fff;
}

@media (max-width: 767px) {
  .c-feature-cards__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

/* --- CTA Bar --- */
.c-cta-bar {
  background-color: var(--color-warm-bg, #d5c8b9);
  padding: 2.5rem 0;
  text-align: center;
}

.c-cta-bar__heading {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.c-cta-bar__link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}

.c-cta-bar__link:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

/* --- Intro Text Section --- */
.c-intro {
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: center;
}

.c-intro__heading {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.c-intro__text {
  max-width: 780px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- News Grid --- */
.c-news-grid {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.c-news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.c-news-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.c-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-news-card__body {
  padding: 1.25rem;
}

.c-news-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.c-news-card__title a {
  color: inherit;
  text-decoration: none;
}

.c-news-card__title a:hover {
  color: var(--color-primary);
}

.c-news-card__date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- Footer (3 Spalten) --- */
.site-footer {
  background: var(--color-primary, #006633);
  color: rgba(255,255,255,0.8);
  padding: clamp(2rem, 5vw, 3rem) 0 2rem;
}

.site-footer__inner {
  max-width: var(--max-width, 1220px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer__brand img {
  filter: brightness(10);
  margin-bottom: 1rem;
}

.site-footer__address {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.site-footer__address a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.site-footer__address a:hover { color: #fff; }

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.site-footer__social a:hover { color: #fff; }

.site-footer h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 1rem;
}

.site-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer__nav a:hover { color: #fff; }

.site-footer__nav li + li {
  margin-top: 0.3rem;
}

.site-footer__about p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.7);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  grid-column: 1 / -1;
  text-align: left;
}

.site-footer__copy p { margin: 0; }

.site-footer__copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.site-footer__copy a:hover { color: #fff; }

@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__copy {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   SECTION LIBRARY — Universal Sections (MIT, Token-basiert)
   Neue Sections ab v1.0 — informiert durch Source/Themex/Ghost-Patterns
   ========================================================================== */

/* --- Hero: Shared Styles --- */
.c-hero {
  position: relative;
  overflow: hidden;
}

.c-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.c-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.c-hero__inner {
  position: relative;
  z-index: 2;
}

.c-hero__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.c-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.c-hero__description {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  margin: 0 0 1.5rem;
  max-width: 640px;
  opacity: 0.9;
  line-height: 1.6;
}

.c-hero__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.c-hero__cta:hover {
  background: var(--color-primary-hover, #005528);
  color: #fff;
}

/* Hero Centered */
.c-hero--centered {
  min-height: clamp(400px, 50vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-dark-bg, #16192a);
  color: #fff;
}

.c-hero--centered .c-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-hero--centered .c-hero__description {
  text-align: center;
}

/* Hero Split */
.c-hero--split {
  background: var(--color-bg, #fff);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.c-hero--split .c-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.c-hero--split .c-hero__title {
  color: var(--color-text-heading, #2c2930);
}

.c-hero--split .c-hero__description {
  color: var(--color-text, #554030);
}

.c-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .c-hero--split .c-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

/* Hero Fullscreen */
.c-hero--fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #111;
}

.c-hero--fullscreen .c-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Features 3-Col --- */
.c-features {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.c-features__item {
  text-align: center;
  padding: 1.5rem;
}

.c-features__icon {
  margin-bottom: 1rem;
}

.c-features__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.c-features__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.c-features__text {
  font-size: 0.95rem;
  color: var(--color-text, #554030);
  line-height: 1.6;
  margin: 0;
}

/* --- Features Split --- */
.c-features-split {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-features-split__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.c-features-split__row + .c-features-split__row {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.c-features-split__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.c-features-split__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  margin: 0 0 0.75rem;
}

.c-features-split__text {
  font-size: 1rem;
  color: var(--color-text, #554030);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.c-features-split__link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.c-features-split__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .c-features-split__row {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
  .c-features-split__row--reverse .c-features-split__media {
    order: 1;
  }
}

/* --- Posts Grid 3-Col --- */
.c-posts-grid {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-posts-grid__heading {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  margin: 0 0 2rem;
}

.c-posts-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Post Card — Shared (used by posts-grid + posts-featured) */
.c-post-card {
  background: var(--color-bg, #fff);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.c-post-card__image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.c-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-post-card:hover .c-post-card__image img {
  transform: scale(1.03);
}

.c-post-card__body {
  padding: 1.25rem;
}

.c-post-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.c-post-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.c-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.c-post-card__title a:hover {
  color: var(--color-primary);
}

.c-post-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text, #554030);
  line-height: 1.6;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted, #999);
}

.c-post-card__meta time::before {
  content: "·";
  margin-right: 0.5rem;
}

/* --- Posts Featured --- */
.c-posts-featured {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-posts-featured__heading {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  margin: 0 0 2rem;
}

.c-posts-featured__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.c-post-card--large .c-post-card__image {
  aspect-ratio: 16/10;
}

.c-post-card--large .c-post-card__title {
  font-size: 1.5rem;
}

.c-post-card--small {
  display: flex;
  flex-direction: row;
  box-shadow: none;
  border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.08));
  border-radius: 0;
}

.c-post-card--small .c-post-card__image {
  width: 80px;
  min-height: 80px;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 4px;
}

.c-post-card--small .c-post-card__body {
  padding: 0.5rem 1rem;
}

.c-post-card--small .c-post-card__title {
  font-size: 0.95rem;
}

.c-post-card--small:hover {
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .c-posts-featured__layout {
    grid-template-columns: 2fr 1fr;
  }
  .c-post-card--large {
    grid-row: 1 / span 3;
  }
}

/* --- CTA Newsletter --- */
.c-cta-newsletter {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-dark-bg, #16192a);
  color: #fff;
}

.c-cta-newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.c-cta-newsletter__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.c-cta-newsletter__text {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  opacity: 0.85;
  line-height: 1.6;
}

.c-cta-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.c-cta-newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
}

.c-cta-newsletter__input::placeholder {
  color: rgba(255,255,255,0.5);
}

.c-cta-newsletter__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.c-cta-newsletter__btn {
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.c-cta-newsletter__btn:hover {
  background: var(--color-primary-hover, #005528);
  border-color: var(--color-primary-hover, #005528);
}

.c-cta-newsletter__hint {
  font-size: 0.8rem;
  margin: 0.75rem 0 0;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .c-cta-newsletter__form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .c-cta-newsletter__input {
    border-right: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
  }
  .c-cta-newsletter__btn {
    border-radius: 4px;
  }
}

/* --- Testimonials Grid --- */
.c-testimonials {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-testimonials__heading {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  text-align: center;
  margin: 0 0 2.5rem;
}

.c-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.c-testimonial {
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, rgba(0,0,0,0.08));
  border-radius: 8px;
  padding: 1.5rem;
  margin: 0;
}

.c-testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text, #554030);
  margin-bottom: 1.25rem;
}

.c-testimonial__quote p {
  margin: 0;
}

.c-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.c-testimonial__name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-heading, #2c2930);
  display: block;
}

.c-testimonial__role {
  font-size: 0.8rem;
  color: var(--color-text-muted, #999);
}

/* --- Logo Wall --- */
.c-logo-wall {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg, #fff);
}

.c-logo-wall__heading {
  font-family: var(--font-heading);
  color: var(--color-text-muted, #999);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 1.5rem;
}

.c-logo-wall__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.c-logo-wall__grid img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}

.c-logo-wall__grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Pricing Table --- */
.c-pricing {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-pricing__heading {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  text-align: center;
  margin: 0 0 2.5rem;
}

.c-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.c-pricing__card {
  border: 1px solid var(--color-border, rgba(0,0,0,0.08));
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.c-pricing__card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.c-pricing__card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
}

.c-pricing__tier {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.c-pricing__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.c-pricing__features {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text, #554030);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.c-pricing__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-pricing__features li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.c-pricing__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.c-pricing__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}

.c-pricing__cta:hover {
  background: var(--color-primary-hover, #005528);
  color: #fff;
}

/* --- FAQ Accordion --- */
.c-faq {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-faq__heading {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  text-align: center;
  margin: 0 0 2.5rem;
}

.c-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.c-faq__item {
  border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.08));
}

.c-faq__question {
  display: block;
  padding: 1.25rem 2rem 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-heading, #2c2930);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.c-faq__question::-webkit-details-marker {
  display: none;
}

.c-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text-muted, #999);
  transition: transform 0.2s;
}

.c-faq__item[open] .c-faq__question::after {
  content: "−";
}

.c-faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text, #554030);
}

.c-faq__answer p {
  margin: 0 0 0.75rem;
}

.c-faq__answer p:last-child {
  margin-bottom: 0;
}

/* --- About Split --- */
.c-about-split {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-about-split__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.c-about-split__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.c-about-split__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  margin: 0 0 1rem;
}

.c-about-split__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text, #554030);
}

.c-about-split__text p {
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .c-about-split__row {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

/* --- Services List --- */
.c-services {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-bg, #fff);
}

.c-services__heading {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  margin: 0 0 2rem;
}

.c-services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.c-services__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border, rgba(0,0,0,0.08));
  border-radius: 8px;
  transition: box-shadow 0.2s;
}

.c-services__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.c-services__icon {
  flex-shrink: 0;
}

.c-services__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.c-services__title {
  font-family: var(--font-heading);
  color: var(--color-text-heading, #2c2930);
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.c-services__text {
  font-size: 0.9rem;
  color: var(--color-text, #554030);
  line-height: 1.6;
  margin: 0;
}

/* --- Posts Grid 2-Col --- */
.c-posts-grid__grid--2col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* --- CTA Bold --- */
.c-cta-bold {
  padding: var(--spacing-section-padding, clamp(3rem, 6vw, 5rem)) 0;
  background: var(--color-primary);
  color: #fff;
}

.c-cta-bold__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.c-cta-bold__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  margin: 0 0 0.75rem;
}

.c-cta-bold__text {
  font-size: 1.15rem;
  margin: 0 0 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.c-cta-bold__btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.c-cta-bold__btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* --- Social Proof Bar --- */
.c-social-proof {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg, #fff);
  border-top: 1px solid var(--color-border, rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.08));
}

.c-social-proof__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  text-align: center;
}

.c-social-proof__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-social-proof__number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.c-social-proof__label {
  font-size: 0.85rem;
  color: var(--color-text-muted, #999);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Venue Grid (BeTheme: Holztextur + beige Karten, 3x2) --- */
.c-venue-grid {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: url('../images/bg-holz.jpg') center / cover no-repeat;
  background-color: #5a3e2b;
}

.c-venue-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.c-venue-card {
  background: var(--color-warm-bg, #d5c8b9);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.c-venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
  .c-venue-grid__items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.c-venue-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.c-venue-card__body {
  padding: 1.25rem 1.5rem;
}

.c-venue-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  color: var(--color-text-heading, #2c2930);
}

.c-venue-card__title a {
  color: inherit;
  text-decoration: none;
}

.c-venue-card__title a:hover {
  color: var(--color-primary);
}

.c-venue-card__capacity {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-accent, #ba8d1a);
  font-weight: 600;
  margin: 0.5rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Icon Cards --- */
.c-icon-cards {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--color-bg, #fff);
}

.c-icon-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.c-icon-card {
  padding: 1.5rem 1rem;
}

.c-icon-card__icon {
  margin-bottom: 1rem;
}

.c-icon-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.c-icon-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--color-text-heading, #2c2930);
}

.c-icon-card__title a {
  color: inherit;
  text-decoration: none;
}

.c-icon-card__title a:hover {
  color: var(--color-primary);
}

.c-icon-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text, #554030);
  line-height: 1.6;
  margin: 0;
}

/* --- Video Embed --- */
.c-video-embed {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--color-dark-bg, #16192a);
  color: #fff;
}

.c-video-embed__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 400;
  text-align: center;
  margin: 0 0 1.5rem;
  color: #fff;
}

.c-video-embed__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.c-video-embed__container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
}

/* Ghost Lexical video card */
.c-video-embed__container .kg-video-card,
.c-video-embed__container .kg-embed-card {
  max-width: 100%;
}

.c-video-embed__container .kg-embed-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
}

/* --- Capacity Badges --- */
.c-capacity-badges {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--color-warm-bg, #d5c8b9);
  text-align: center;
}

.c-capacity-badges__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.c-capacity-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.c-capacity-badge__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-accent, #ba8d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 -2px 6px rgba(0,0,0,0.1);
}

.c-capacity-badge__number {
  font-family: var(--font-display, var(--font-heading));
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.c-capacity-badge__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-heading, #2c2930);
  margin: 0;
  max-width: 160px;
}
