﻿/* ============================================
   PAGES.CSS – Seitenspezifische & Utility-Styles
   Larimar Yoga
   ============================================ */


/* ============================================
   PAGE HERO – Ergänzungen zu style.css
   ============================================ */
.page-hero {
  position: relative;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.page-hero__container {
  position: relative;
  z-index: 2;
}

/* Dunkle Schrift-Variante (für helle Hintergrundbilder) */
.page-hero--dark .breadcrumb,
.page-hero--dark .breadcrumb a,
.page-hero--dark .breadcrumb span,
.page-hero--dark .section__label,
.page-hero--dark h1,
.page-hero--dark .page-hero__subtitle,
.page-hero--dark .page-hero__subtitle--bark,
.page-hero--dark .page-hero__desc {
  color: #000 !important;
}
.page-hero--dark .divider {
  background: #000;
}

.page-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-top: 0.4rem;
  line-height: 1.2;
}

/* Bark-farbige Subtitle-Variante */
.page-hero__subtitle--bark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bark);
  margin-top: 0.5rem;
}

.page-hero__desc {
  max-width: 500px;
  font-size: 1.05rem;
}

/* Seitenspezifische Bildpositionen */
.page-hero--tagesretreat > img    { object-position: center 40%; }
.page-hero--ueber-mich > img      { object-position: center 45%; }
.page-hero--retreat-oktober > img { object-position: center 35%; }
.page-hero--seelenschmuck > img   { object-position: center 35%; }
.page-hero--soul-flow > img       { object-position: center 40%; }
.page-hero--kontakt > img         { object-position: center 40%; }
.page-hero--kalender > img        { object-position: center 70%; }
.page-hero--aktuell > img         { object-position: center 50%; }
.page-hero--empfehlungen > img    { object-position: center 50%; }
.page-hero--privatunterricht > img { object-position: center; }
.page-hero--online-yoga > img     { object-position: center; }
.page-hero--shop > img            { object-position: center 55%; }
.page-hero--gutscheine > img      { object-position: center 40%; }


/* Empfehlungen – spezifische Bildpositionen */
.rec-card .img--top { object-position: center top; }

/* ============================================
   TEXT UTILITIES
   ============================================ */
.text-intro {
  font-size: 1.05rem;
  line-height: 1.9;
}

.text-body {
  line-height: 1.9;
}

.text-note {
  font-size: 0.88rem;
  color: var(--text-lt);
  margin-top: 1rem;
}

.text-legal {
  font-size: 0.82rem;
  color: var(--text-lt);
  margin-top: 1.5rem;
}

.text-muted {
  color: var(--text-lt);
}

.text-sm {
  font-size: 0.9rem;
}
.text-xs {
  font-size: 0.72rem;
}

.text-xs {
  font-size: 0.85rem;
}

.link-clay {
  color: var(--bark);
}
.link-clay:hover {
  color: var(--deep);
}

.link-bark {
  color: var(--bark);
}
.link-bark:hover {
  color: var(--deep);
}


/* ============================================
   LISTEN
   ============================================ */
.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

/* Kompakte Liste (ohne grid, kleiner Abstand) */
.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compact-list li {
  padding: 0.3rem 0;
}


/* ============================================
   ABSCHLUSS-BLOCK
   ============================================ */
.closing-block {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.closing-block__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--deep);
}

.closing-block__text--sm {
  font-size: 1.1rem;
}

.closing-block__signature {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--bark);
  margin-top: 0.5rem;
}

.closing-block__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bark);
  margin-top: 1rem;
}

.closing-block__cta {
  margin-top: 2rem;
}


/* ============================================
   GALERIE
   ============================================ */
.gallery--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (max-width: 640px) {
  .gallery--2col { grid-template-columns: 1fr; }
}

.gallery--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) {
  .gallery--3col { grid-template-columns: 1fr; }
}

.gallery__img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery__img--portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.gallery__img--wide {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}


/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox__img,
.lightbox__video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Video-Kachel in der Galerie */
.gallery__video {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.gallery__video .gallery__img {
  cursor: pointer;
  display: block;
}
.gallery__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: background var(--transition);
}
.gallery__video:hover::after {
  background: rgba(0, 0, 0, 0.32);
}
.gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--bark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  z-index: 1;
  transition: transform var(--transition);
}
.gallery__video:hover .gallery__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.lightbox__btn {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox__prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}


/* ============================================
   INFO BOX MODIFIERS
   ============================================ */
.info-box--clay { border-color: var(--bark); }
.info-box--sage { border-color: var(--sage); }

/* Dekorative Icons in Info-Boxen */
.info-box__icon {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  color: var(--bark);
  margin-bottom: 1rem;
  opacity: 0.9;
  flex-shrink: 0;
}


/* ============================================
   INFO BOX STACKS (Grid-Container für Info-Boxen)
   ============================================ */
.info-box-stack {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

.info-box-stack--gap1 {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

/* 2-spaltig (Yama/Nyama) */
.info-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}
.info-box-grid .info-box {
  margin: 0;
}

@media (max-width: 768px) {
  .info-box-grid {
    grid-template-columns: 1fr;
  }
}

/* Einspaltige Variante (z.B. Shop) */
.info-box-grid--1col {
  grid-template-columns: 1fr;
}


/* ============================================
   INFO PANEL (Sand-Hintergrund, Borderleft)
   ============================================ */
.info-panel {
  padding: 1.4rem 2rem;
  background: var(--sand);
  border-left: 3px solid var(--bark);
  font-size: 0.92rem;
  line-height: 1.9;
}

.info-panel p {
  margin-bottom: 0.2rem;
}

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


/* ============================================
   ABOUT PREVIEW IMAGE
   ============================================ */
.about-preview__img--tall {
  min-height: 500px;
  object-fit: cover;
  width: 100%;
}


/* ============================================
   QUALIFIKATIONSLISTE (Über mich)
   ============================================ */
.subsection-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.5rem;
  display: block;
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.qual-list__item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--stone);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.qual-list__item:last-child {
  border-bottom: none;
}

.qual-list__bullet {
  color: var(--bark);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  min-width: 16px;
  flex-shrink: 0;
}


/* ============================================
   YCH ZERTIFIZIERUNGS-BADGE
   ============================================ */
.ych-badge {
  margin-top: 2.5rem;
}

.ych-badge__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.ych-badge__logo {
  width: 90px;
  height: auto;
  opacity: 0.9;
}

.ych-badge__label {
  font-size: 0.78rem;
  color: var(--text-lt);
  letter-spacing: 0.05em;
}


/* ============================================
   GRÜNDE-LISTE (Online Yoga)
   ============================================ */
.content-block .reasons-list,
.reasons-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .content-block .reasons-list,
  .reasons-list { grid-template-columns: 1fr; }
}

.reasons-list .reasons-list__item {
  padding: 1.5rem;
  background: var(--sand);
  margin-bottom: 0;
}
.reasons-list .reasons-list__item::before {
  content: none;
}

.reasons-list__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  color: var(--bark);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.reasons-list__title {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.35rem;
}


/* ============================================
   PREIS-KACHELN (Online Yoga Preise)
   ============================================ */
.pricing-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .pricing-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pricing-tiles { grid-template-columns: 1fr; }
}

.pricing-tile {
  background: var(--sand);
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 3px solid transparent;
}

.pricing-tile--highlight {
  border-top-color: var(--bark);
}

.pricing-tile__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 0.6rem;
  display: block;
}

.pricing-tile__price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--deep);
  line-height: 1;
  display: block;
}

.pricing-tile__sub {
  font-size: 0.78rem;
  color: var(--text-lt);
  margin-top: 0.5rem;
  display: block;
}

/* Preis-Wert gross (info-grid) */
.info-grid__value--price {
  font-size: 1.6rem;
  color: var(--deep);
}

/* Price box Varianten */
.price-box--sage {
  border-color: var(--sage);
}


/* ============================================
   VIDEO
   ============================================ */
.video-wrap {
  margin-top: 2rem;
}

.video-wrap video {
  width: 100%;
  display: block;
  background: #000;
}


/* ============================================
   PARTNER BOX
   ============================================ */
/* ============================================
   FEHLERSEITE (404)
   ============================================ */
.error-page {
  text-align: center;
  padding: 7rem 0;
}
.error-page .divider {
  margin-left: auto;
  margin-right: auto;
}
.error-page__code {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--bark);
  margin: 0.5rem 0;
}
.error-page__btns {
  justify-content: center;
  margin-top: 2rem;
}


.partner-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--sand);
  text-align: center;
}

.partner-box__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.partner-box__text {
  font-size: 0.9rem;
  color: var(--text-lt);
  text-align: center;
}

.partner-box__people {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.partner-box__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 0 1 220px;
}
.partner-box__img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 560px) {
  .partner-box__people { flex-direction: column; align-items: center; gap: 2rem; }
}


/* ============================================
   FLYER / FULL-WIDTH BILD
   ============================================ */
.flyer-wrap {
  margin-top: 2.5rem;
  padding: 0 1.5rem;
}

.flyer-img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow-lg);
}


/* ============================================
   SECTION CTA (zentrierter Block)
   ============================================ */
.section-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

.cta-center__note {
  margin-bottom: 1.5rem;
  color: var(--text-lt);
}


/* ============================================
   BTN GRUPPE
   ============================================ */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-group--left {
  justify-content: flex-start;
  max-width: 600px;
}
.btn-group--left .btn {
  flex: 1 1 0;
  text-align: center;
}

@media (max-width: 640px) {
  .btn-group--left {
    flex-direction: column;
  }
  .btn-group--left .btn,
  .btn-group--left .btn--filled {
    width: 100%;
    text-align: center;
  }
}

/* Button-Varianten */
.btn--full {
  width: 100%;
  text-align: center;
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}


/* ============================================
   DIVIDER VARIANTEN
   ============================================ */
.divider--sm {
  margin: 0.8rem 0;
}


/* ============================================
   BLOG-ELEMENTE
   ============================================ */
.blog-img-wrap {
  margin-bottom: 2.5rem;
}

.blog-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.blog-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.blog-list__item {
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--stone);
}

.blog-list__item:last-child {
  border-bottom: none;
}

.blog-list__bullet {
  position: absolute;
  left: 0;
  color: var(--bark);
}

.blog-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
  text-align: center;
}

.blog-cta {
  text-align: center;
  margin-top: 2.5rem;
}


/* ============================================
   KONTAKT-SEITE
   ============================================ */
.contact-portrait {
  margin-bottom: 2rem;
}

.contact-portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

.contact-name {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-bio {
  color: var(--text-lt);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.social-btns {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-success {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--sage-lt);
  text-align: center;
}

.form-success p {
  color: var(--deep);
}


/* ============================================
   EMPFEHLUNGS-KARTEN BILDER
   ============================================ */
.rec-card__img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.rec-card__img--wide {
  aspect-ratio: 16 / 9;
}

.rec-card__img--std {
  aspect-ratio: 3 / 2;
}

.rec-card__img-wrap--logo {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.rec-card__img--top {
  object-position: top;
}

.rec-card__img--logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
  padding: 1rem;
  margin-bottom: 0;
}


/* ============================================
   STORNO / RAHMENBEDINGUNGEN
   ============================================ */
.storno-heading {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bark);
}


/* ============================================
   MARGIN / SPACING UTILITIES
   ============================================ */
/* ============================================
   ALLGEMEINE LAYOUT-UTILITIES
   ============================================ */
.text-center { text-align: center; }

.text-clay { color: var(--bark); }

/* Statusmeldungen: Laden / Fehler (JS-generiert) */
.state-msg {
  padding: 2rem;
  text-align: center;
  font-family: sans-serif;
}
.state-msg--sm { padding: 1rem; }
.state-msg--lg { padding: 3rem; }

/* Section-Header Einleitungstext */
.section__header-intro {
  color: var(--text-lt);
  max-width: 520px;
}

/* Erweitertes mt-7 */
.mt-7 { margin-top: 4rem; }

/* About-Sektion Logo (index.html) */
.about-preview__logo-wrap { margin-bottom: 1.5rem; }

.about-preview__logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
}

/* About image object-position Varianten */
.about-preview__img--top { object-position: center top; }

/* Home-Termine Wrapper */
.home-termine {
  max-width: 720px;
  margin: 0 auto;
}

/* Home-Termine Einzel-Event */
.home-event {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--stone);
  text-decoration: none;
  color: inherit;
}

.home-event__date {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.home-event__day {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--deep);
  display: block;
  line-height: 1;
}

.home-event__month {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  display: block;
}

.home-event__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 0.2rem;
}

.home-event__meta {
  font-size: 0.82rem;
  color: var(--text-lt);
}

.home-event__arrow {
  margin-left: auto;
  color: var(--bark);
  flex-shrink: 0;
}

/* Hero-Content z-index (index.html) */
.hero__content--rel {
  position: relative;
  z-index: 2;
}

/* Hero Brand Block (index.html) */
.hero__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.hero__brand-logo {
  height: clamp(1.6rem, 3vw, 2.2rem);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(14%) sepia(10%) saturate(600%) hue-rotate(330deg) brightness(85%);
}

.hero__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--deep);
}

/* Blog-Liste ohne Trennlinien */
.blog-list--plain .blog-list__item { border-bottom: none; }


/* ============================================
   MARGIN / SPACING UTILITIES
   ============================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }


/* ============================================
   FOOTER LEGAL LINKS
   ============================================ */
.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.35);
}


/* ============================================
   RETREAT PROGRAMM-TABELLE
   ============================================ */
.program-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
  font-size: 0.92rem;
}

.program-table caption {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  text-align: left;
  padding: 0 0 0.8rem;
  border-bottom: 2px solid var(--bark);
  margin-bottom: 0.5rem;
}

.program-table thead th {
  background: var(--deep);
  color: var(--sand);
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-table tbody tr {
  border-bottom: 1px solid var(--stone);
}

.program-table tbody tr:nth-child(even) {
  background: var(--sand);
}

.program-table tbody td {
  padding: 0.75rem 1rem;
  vertical-align: top;
  color: var(--text);
  line-height: 1.55;
}

.program-table tbody td:first-child {
  white-space: nowrap;
  font-weight: 500;
  color: var(--bark);
  width: 130px;
  font-size: 0.88rem;
}

.program-table tfoot td {
  font-size: 0.82rem;
  color: var(--text-lt);
  font-style: italic;
  padding: 0.6rem 1rem 0;
  border: none;
}


/* ============================================
   STORNO-TABELLE
   ============================================ */
.storno-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.storno-table tr {
  border-bottom: 1px solid var(--stone);
}

.storno-table td {
  padding: 0.65rem 0.8rem;
  color: var(--text);
}

.storno-table td:first-child {
  color: var(--bark);
  font-weight: 500;
  white-space: nowrap;
  width: 55%;
}


/* ============================================
   LEITUNG-GRID (Retreat)
   ============================================ */
.leitung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.leitung-card {
  padding: 2rem;
  border: 1px solid var(--stone);
  background: var(--white);
}

.leitung-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.leitung-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.leitung-card a {
  color: var(--bark);
}

.leitung-card a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .leitung-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   REFUGIO GALERIE
   ============================================ */
.refugio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.refugio-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}

@media (max-width: 640px) {
  .refugio-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .program-table tbody td:first-child {
    width: 90px;
    font-size: 0.82rem;
  }
}


/* ============================================
   KALENDER – EVENT TILES
   ============================================ */
.event-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.event-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.event-tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.event-tile__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-tile:hover .event-tile__img {
  transform: scale(1.04);
}

.event-tile__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 0.4rem 0.7rem;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 2px 8px rgba(61, 53, 48, 0.15);
}

.event-tile__badge-month {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.event-tile__badge-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--deep);
  line-height: 1;
}

.event-tile__body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-tile__tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.5rem;
  display: block;
}

.event-tile__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-tile__time {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.event-tile__meta {
  font-size: 0.8rem;
  color: var(--text-lt);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.event-tile__desc {
  font-size: 0.87rem;
  color: var(--text-lt);
  line-height: 1.65;
}

.event-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  margin-top: auto;
  padding-top: 1rem;
  align-self: flex-start;
  transition: gap var(--transition);
}

.event-tile:hover .event-tile__cta {
  gap: 0.8rem;
}

.event-tile__cta::after {
  content: '→';
}

/* Featured Tile (Wiederkehrend) */
.event-tile--featured {
  display: grid;
  grid-template-columns: 380px 1fr;
  width: 100%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-tile__img-wrap--tall {
  aspect-ratio: unset;
  min-height: 240px;
}

.event-tile__badge-day--sm {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.event-tile__body--featured {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-tile__title--lg {
  font-size: 1.6rem;
}

.event-tile__body--featured .event-tile__cta {
  margin-top: 1rem;
}

.event-tile__meta--compact {
  margin-bottom: 1rem;
}

@media (max-width: 760px) {
  .event-tile--featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .event-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .event-tile__body {
    padding: 1rem;
  }
  .event-tile__title {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .event-tiles {
    grid-template-columns: 1fr;
  }
}

/* Wiederkehrend Box */
.recurring-box {
  background: var(--sage-lt);
  border-left: 3px solid var(--sage);
  padding: 1.5rem 2rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

.recurring-box:hover {
  background: var(--stone);
}

.recurring-box__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.recurring-box__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 0.2rem;
}

.recurring-box__sub {
  font-size: 0.85rem;
  color: var(--text-lt);
}

/* Section Label Bar */
.section-label-bar {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 0;
}

/* Kalender CTA Band */
.section-cta-band {
  padding: 3rem 0;
  background: var(--sand);
  text-align: center;
}
