/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg-dark:    #1c1616;
  --color-bg-darker:  #140f0f;
  --color-bg-gradient: radial-gradient(circle at bottom right,
    #480f01 0%, #1c1616 47%, #261515 87%, #4a0707 100%);
  --color-bg-card:    #ffffff;
  --color-bg-light:   #f3f3f3;

  --color-accent:     #F04D12;
  --color-accent-2:   #D7231C;
  --color-accent-grad: linear-gradient(135deg, #F04D12, #D7231C);

  --color-text-light: #ffffff;
  --color-text-off:   #FFFAF5;
  --color-text-dark:  #2C282E;
  --color-text-muted: #888888;
  --color-border:     #dedfe0;

  --font-heading: 'Manrope', Helvetica, Arial, sans-serif;
  --font-body:    'Figtree', Helvetica, Arial, sans-serif;

  --nav-height:   82px;
  --container:    1080px;
  --radius:       8px;
  --transition:   all 0.2s ease-in-out;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-bg-gradient);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--transition); }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-text-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }

p  { margin-bottom: 1.2em; }

/* Helle Texte auf dunklem Hintergrund */
.text-light, .text-light h1, .text-light h2,
.text-light h3, .text-light h4, .text-light p {
  color: var(--color-text-off);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 60px 0; }

.section--dark {
  background: transparent;
  color: var(--color-text-off);
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--white {
  background: #ffffff;
  color: var(--color-text-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ============================================================
   SITE HEADER (above nav)
   ============================================================ */
.site-top {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-bg-gradient);
  background-attachment: fixed;
}

.site-header {
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 88px;
  overflow: hidden;
  border-bottom: 3px solid var(--color-accent);
}

.site-header__brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
  width: max-content;
  text-decoration: none;
}

.site-header__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-off);
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-bottom: 6px;
}

.site-header__sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,250,245,0.70);
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.site-header__accent {
  color: var(--color-accent);
}

.site-header__image {
  flex-shrink: 0;
  height: 88px;
  width: auto;
  overflow: hidden;
  display: block;
}

.site-header__image img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: static;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text-off);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav__logo span { color: var(--color-accent); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,250,245,0.8);
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__item:hover > .nav__link { color: var(--color-accent); }

/* Dropdown-Pfeil */
.nav__link--has-children::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: var(--transition);
}

.nav__item:hover > .nav__link--has-children::after { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown-Menü */
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-bg-darker);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--color-accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
}

.nav__item:hover > .nav__dropdown { display: block; }

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,250,245,0.75);
  transition: var(--transition);
}

.nav__dropdown a:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.04);
}

/* Hamburger (Mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-off);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 60vh;
  background: radial-gradient(circle at bottom right,
    #480f01 0%, #1c1616 47%, #261515 87%, #4a0707 100%);
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero__content { max-width: 640px; }

.hero__label {
  display: inline-block;
  background: var(--color-accent-grad);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-off);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,250,245,0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent-grad);
  color: #ffffff;
}

.btn--primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #ffffff;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__image--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a1a1a, #3a2020);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
}

.card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__tag {
  display: inline-block;
  background: var(--color-accent-grad);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card__title a:hover { color: var(--color-accent); }

.card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.card__excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

.card__footer {
  padding: 12px 24px;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   ARTICLE / SINGLE PAGE
   ============================================================ */
.article { background: #ffffff; }
.article--galerie { padding-bottom: 3rem; }

.article__hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.article__header {
  padding: 40px 0 20px;
}

.article__tag {
  display: inline-block;
  background: var(--color-accent-grad);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.article__title {
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.article__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.article__body {
  padding: 32px 0 60px;
  /* Volle Container-Breite — Bild+Text-Artikel brauchen Platz */
}

.article__body h2 { margin: 2em 0 0.6em; color: var(--color-text-dark); }
.article__body h3 { margin: 1.6em 0 0.5em; color: var(--color-text-dark); }
.article__body p  { margin-bottom: 1.2em; }

.article__body img {
  border-radius: 6px;
  margin: 1.5em 0;
  width: 100%;
}

.article__body a { color: var(--color-accent); }
.article__body a:hover { text-decoration: underline; }

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.article-nav__prev,
.article-nav__next     { flex: 1; }
.article-nav__next     { text-align: right; }
.article-nav__prev a,
.article-nav__next a   { display: inline-flex; flex-direction: column; gap: 0.2rem; color: var(--color-text-dark); }
.article-nav__prev a:hover,
.article-nav__next a:hover { color: var(--color-accent); }
.article-nav__label    { font-size: 0.8rem; color: var(--color-text-muted); }
.article-nav__title    { font-size: 0.95rem; font-weight: 600; }

.article__body ul,
.article__body ol  { padding-left: 1.5em; margin: 0.75em 0 1.2em; }
.article__body ul  { list-style: disc; }
.article__body ol  { list-style: decimal; }
.article__body li  { margin-bottom: 0.3em; }

.article__body table {
  border-collapse: collapse;
  width: auto;
  margin: 1.5em 0;
  font-size: 0.93em;
}
.article__body th,
.article__body td {
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  text-align: left;
  vertical-align: top;
}
.article__body th {
  background: #f0eded;
  font-weight: 600;
  color: var(--color-text-dark);
}
.article__body tr:nth-child(even) td { background: #fafafa; }

/* YouTube embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 2em 0;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   LIST PAGE (Kategorie-Übersicht)
   ============================================================ */
.list-header {
  background: transparent;
  padding: 60px 0;
  color: var(--color-text-off);
}

.list-header h1 { color: var(--color-text-off); }

/* ============================================================
   KATEGORIE-INTRO (Hauptkategorie)
   ============================================================ */
.category-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

/* ============================================================
   TEASER-LISTE (Unterkategorien in Hauptkategorie)
   ============================================================ */
.teaser-list { display: flex; flex-direction: column; gap: 0; }

.teaser {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.teaser:last-child { border-bottom: none; }

.teaser__image-wrap { display: block; overflow: hidden; border-radius: 6px; }

.teaser__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.teaser__image-wrap:hover .teaser__image { transform: scale(1.03); }

.teaser__image-wrap--placeholder {
  width: 280px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8e0e0, #d0c8c8);
  border-radius: 6px;
}

.teaser__content { padding-top: 4px; }

.teaser__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.teaser__title a:hover { color: var(--color-accent); }

.teaser__desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.teaser__link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
}

.teaser__link:hover { text-decoration: underline; }

/* ============================================================
   UNTERKATEGORIE-INTRO (Bild + Text nebeneinander)
   ============================================================ */
.subcat-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.subcat-intro__image {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.subcat-intro__text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}

/* ============================================================
   ARTIKELLISTE (Tabelle in Unterkategorie)
   ============================================================ */
.article-list {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.article-list th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  padding: 10px 12px;
  border-bottom: 2px solid var(--color-accent);
  text-align: left;
}

.article-list td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.article-list tr:hover td { background: #faf8f8; }

.article-list td:first-child a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-dark);
}

.article-list td:first-child a:hover { color: var(--color-accent); }

.article-list td:last-child {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.empty-note { color: var(--color-text-muted); font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: transparent;
  color: rgba(255,250,245,0.7);
  padding: 32px 0 28px;
  border-top: 2px solid var(--color-accent-2);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 16px;
}

.footer__brand {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--color-text-off);
  text-decoration: none;
  transition: var(--transition);
}

.footer__brand:hover { color: var(--color-accent); }

.footer__accent { color: var(--color-accent); }

.footer__copy {
  font-size: 0.8rem;
  line-height: 1;
  color: rgba(255,250,245,0.6);
  text-align: center;
  white-space: nowrap;
}

.footer__nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,250,245,0.6);
  transition: var(--transition);
}

.footer__nav a:hover { color: var(--color-accent); }

/* ============================================================
   BILD-TEXT SHORTCODE (zweispaltig)
   ============================================================ */
.bild-text {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 28px;
  align-items: start;
  margin: 2em 0;
}

/* Variante: Bild rechts */
.bild-text--rechts {
  grid-template-columns: 3fr 2fr;
}

.bild-text--rechts .bild-text__link { order: 2; }
.bild-text--rechts .bild-text__text { order: 1; }

.bild-text__link {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
}

.bild-text__image {
  width: 100%;
  border-radius: 6px;
  display: block;
  transition: transform 0.3s ease;
  margin: 0;  /* überschreibt article__body img margin */
}

.bild-text__link:hover .bild-text__image { transform: scale(1.02); }

.bild-text__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.bild-text__text p:last-child { margin-bottom: 0; }

/* Normale Artikel-Bilder (ohne Shortcode) ebenfalls klickbar */
.article__body a.glightbox { cursor: zoom-in; display: inline-block; }
.article__body a.glightbox img { border-radius: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  .nav__menu   { display: none; flex-direction: column; align-items: flex-start;
                 position: absolute; top: var(--nav-height); left: 0; right: 0;
                 background: var(--color-bg-darker); padding: 16px 0;
                 border-bottom: 1px solid rgba(255,255,255,0.08); height: auto; gap: 0; }
  .nav__menu.is-open { display: flex; }
  .nav__item   { height: auto; width: 100%; }
  .nav__link   { padding: 12px 24px; width: 100%; height: auto; }
  .nav__dropdown { display: block; position: static; box-shadow: none;
                   border: none; border-radius: 0; background: rgba(0,0,0,0.2); }
  .nav__dropdown a { padding-left: 40px; }
  .nav__toggle { display: flex; }
}

@media (max-width: 600px) {
  .site-header__inner {
    height: 66px;
    gap: 10px;
  }
  .site-header__title {
    font-size: 1.25rem;
    margin-bottom: 2px;
  }
  .site-header__sub {
    font-size: 0.75rem;
    white-space: normal;
  }
  .site-header__image {
    height: 66px;
    max-width: 36%;
  }
  .site-header__image img {
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 12px; }
  .footer__copy { text-align: left; }
  .footer__nav { justify-content: flex-start; }

  /* Bild-Text: auf Mobil übereinander */
  .bild-text,
  .bild-text--rechts {
    grid-template-columns: 1fr;
  }
  .bild-text--rechts .bild-text__link,
  .bild-text--rechts .bild-text__text { order: unset; }

  /* Unterkategorie-Intro ebenfalls übereinander */
  .subcat-intro        { grid-template-columns: 1fr; }
  .teaser              { grid-template-columns: 1fr; }
  .teaser__image-wrap  { max-width: 100%; }

  .slideshow          { aspect-ratio: 16 / 9; }
  .article-cards      { grid-template-columns: 1fr; }
}

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow-wrap {
  background: transparent;
  display: flex;
  justify-content: center;
}
.slideshow {
  position: relative;
  width: 100%;
  max-width: calc(65vh * 16 / 9);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-darker);
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow__slide.is-active {
  opacity: 1;
}

.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.slideshow__btn:hover { background: rgba(0,0,0,0.7); }
.slideshow__btn--prev { left: 16px; }
.slideshow__btn--next { right: 16px; }

.slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slideshow__dot.is-active,
.slideshow__dot:hover {
  background: #fff;
}

/* ============================================================
   WELCOME SECTION (Homepage)
   ============================================================ */
.section--dark {
  background: transparent;
  color: var(--color-text-off);
}

.welcome {
  margin: 0 auto;
}

.welcome__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-off);
  margin-bottom: 1rem;
}

.welcome__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,250,245,0.85);
  margin-bottom: 2rem;
}

.welcome__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,250,245,0.85);
  margin-bottom: 1.2em;
}

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

.welcome__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   HIGHLIGHTS (curated feature boxes, all pages)
   ============================================================ */
.highlights {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 48px 0;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.highlight-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.highlight-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.highlight-card__img-wrap {
  display: block;
  overflow: hidden;
  height: 180px;
}

.highlight-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-card__img {
  transform: scale(1.03);
}

.highlight-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.highlight-card {
  color: inherit;
  text-decoration: none;
}

.highlight-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.highlight-card:hover .highlight-card__title {
  color: var(--color-accent);
}

.highlight-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  min-height: calc(0.9rem * 1.6 * 6);
}

/* ============================================================
   KONTAKT-SEITE
   ============================================================ */
.contact-page {
  max-width: 640px;
  margin: 48px auto 64px;
}

.contact-page__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-off);
  margin-bottom: 12px;
}

.contact-page__intro {
  color: rgba(255,250,245,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-msg--success {
  background: rgba(40,160,80,0.15);
  border: 1px solid rgba(40,160,80,0.4);
  color: #7de0a0;
}

.contact-msg--error {
  background: rgba(240,77,18,0.12);
  border: 1px solid rgba(240,77,18,0.35);
  color: rgba(255,250,245,0.85);
}

.contact-msg--error a {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,250,245,0.75);
}

.contact-form__req {
  color: var(--color-accent);
}

.contact-form__input,
.contact-form__textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,250,245,0.18);
  border-radius: var(--radius);
  color: var(--color-text-off);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.09);
}

.contact-form__textarea {
  resize: vertical;
  line-height: 1.6;
}

.contact-form__row--submit {
  margin-top: 8px;
}

.contact-form__btn {
  background: var(--color-accent-grad);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  transition: opacity 0.2s;
}

.contact-form__btn:hover { opacity: 0.88; }

/* ── Galerie-Grid ─────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  margin-top: 2rem;
}

.gallery__item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__empty {
  color: var(--color-muted);
  font-style: italic;
  margin-top: 2rem;
}

/* ── News-Feed (Blog-Liste) ─────────────────────────────────────────────── */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.news-card__meta {
  margin-bottom: 0.4rem;
}

.news-card__date {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.news-card__title {
  color: var(--color-text-dark);
}

.news-card__content {
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.7;
}

.news-card__content p { margin: 0 0 0.8rem 0; }
.news-card__content p:last-child { margin-bottom: 0; }

.news-card__content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 0.75rem 0;
}

.news-card__footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.news-card__link {
  display: inline-block;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.news-card__link:hover {
  color: var(--color-accent-2);
  text-decoration: underline;
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.pagination {
  margin-top: 3rem;
}

.pagination__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.pagination__btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-accent);
  color: #fff;
  transition: var(--transition);
}

.pagination__btn:hover {
  background: var(--color-accent-2);
}

.pagination__btn--disabled {
  background: var(--color-border);
  color: var(--color-text-muted);
  cursor: default;
  pointer-events: none;
}

.pagination__info {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
