/* =========================================================
   SHALOM PLACE — GLOBALES STYLESHEET
   Design-DNA: ruhig, warm, hochwertig, minimalistisch.
   Diese Datei gilt seitenübergreifend für alle Unterseiten.
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Karla:wght@400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --color-bg-primary: #F8F4EE;
  --color-bg-secondary: #F3EDE4;
  --color-card: #FCFAF7;
  --color-text-primary: #3B352F;
  --color-text-secondary: #7A7167;
  --color-button: #6D7654;
  --color-button-hover: #55603F;
  --color-accent-gold: #B89563;
  --color-accent-sage: #9BA48A;
  --color-border: #DDD4C8;
  --color-button-text: #FCFAF7;

  /* Typografie */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 40px;

  /* Wiederkehrende Radien */
  --radius-sm: 8px;
  --radius-md: 8px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
}
body {
  background: #F9F5EB;
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout-Helper ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =========================================================
   HEADER
   Liegt transparent ÜBER dem Hero-Bild (siehe .hero margin-top).
   Header und Hero bilden optisch eine zusammenhängende Fläche.
   ========================================================= */
.site-header {
  position: relative;
  z-index: 2;
  background: transparent;
  width: 100%;
  margin-top: 56px;
  container-type: inline-size;
  container-name: headerblock;
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 8px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: -30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: -8px;
}

.logo--original {
  visibility: hidden;
}

.logo--aligned {
  position: absolute;
  left: calc(1.0630cqw + 17.5255px);
  top: -9.75px;
  margin-left: 0;
  z-index: 100;
}

.logo--aligned .logo__icon {
  height: 4.035cqw;
  margin-top: 0;
}

.logo--aligned .logo__text {
  width: 10cqw;
}

.logo--aligned .logo__wordmark-text {
  font-size: 1.636cqw;
  letter-spacing: 0.45cqw;
}


.logo--aligned .logo__tagline-text {
  font-size: 0.5498cqw;
  letter-spacing: 0.033cqw;
}

.logo__icon {
  height: 74px;
  width: auto;
  flex-shrink: 0;
  margin-top: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  width: 170px;
}

.logo__wordmark-text {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  /* Exakt auf die Breite der Tagline "PSIHOLOGIJA · VJERA · OBITELJ" (9px)
     kalibriert, sodass das A von BETANIA genau auf dem J von OBITELJ endet. */
  letter-spacing: 5.965px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.logo__tagline-text {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 1.2746px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 8px;
  white-space: nowrap;
}

/* Navigation */
.main-nav {
  display: flex;
  margin-left: calc(1.8251cqw - 142.2199px);
  align-self: flex-start;
  margin-top: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 3.850cqw;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.9384cqw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0537cqw;
  text-transform: uppercase;
  color: var(--color-text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  display: inline-block;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-button);
}

/* ---------- Buttons (global, wiederverwendbar) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 1.536px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 14px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #5F6E4F;
  color: #FFFFFF;
  border-color: #5F6E4F;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2C2B26;
  border-color: #2C2B26;
}

.btn-secondary {
  background: transparent;
  color: #2C2B26;
  border-color: #2C2B26;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #2C2B26;
  border-color: #2C2B26;
  color: #FFFFFF;
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.8952cqw;
  letter-spacing: 0.1074cqw;
  padding: 0.9791cqw 2.0981cqw;
}

.header-cta--original {
  visibility: hidden;
}

.header-cta--fixed {
  position: absolute;
  top: calc(11px - 1.6820cqw);
  right: 6.142cqw;
  z-index: 100;
}

/* =========================================================
   HERO
   Zieht sich per negativem margin-top unter den (transparenten)
   Header, sodass das Foto als durchgehende Fläche hinter Header
   UND Hero erscheint.
   ========================================================= */
.hero {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -78px;
  aspect-ratio: 1440 / 555;
  overflow: hidden;
  background: var(--color-bg-primary);
  container-type: inline-size;
  container-name: heroblock;
}

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

.hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 1;
  background: linear-gradient(to bottom, #FAF6EE 0%, rgba(250, 246, 238, 0) 100%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(250, 246, 238, 0.72) 0%,
    rgba(250, 246, 238, 0.42) 32%,
    rgba(250, 246, 238, 0.08) 58%,
    rgba(250, 246, 238, 0) 72%
  );
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  aspect-ratio: 1440 / 555;
}

.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 34.722cqw;
  padding-top: 7.085cqw;
  margin-left: calc(6.5278cqw - 24px);
}

.hero__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3.06cqw;
  line-height: 1.15;
  color: #2C2B26;
  margin: -1.944cqw 0 1.111cqw;
}

.hero__heading .accent {
  color: #5F6E4F;
  font-style: italic;
}

.hero__heading-line { white-space: nowrap; }

.hero__paragraph {
  font-family: var(--font-sans);
  font-size: 1.042cqw;
  line-height: 1.5;
  color: #5B5A52;
  margin: 0;
  max-width: 31.944cqw;
}

.hero__divider {
  width: 2.083cqw;
  height: 0.0694cqw;
  background: var(--color-text-secondary);
  border: none;
  margin: 0.625cqw 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.111cqw;
  position: absolute;
  left: 6.5278cqw;
  bottom: 4.1667cqw;
}

.hero__actions .btn {
  font-size: 0.8889cqw;
  letter-spacing: 0.1067cqw;
  padding: 0.9722cqw 2.083cqw;
}

.hero__actions .btn-primary {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   WILLKOMMEN ("Schön, dass ihr hier seid")
   Ruhiger Sekundär-Hintergrund als bewusster Kontrast zum
   lebendigen Hero-Foto darüber.
   ========================================================= */
.welcome {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 24px;
  padding: 0 24px;
}

.welcome__inner {
  max-width: 1392px;
  margin: 0 auto;
  background: #F3EEE2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  border-radius: 3px;
  overflow: hidden;
}

/* Bildfläche */
.welcome__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.welcome__media-note {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 0 28px;
}

/* Textspalte */
.welcome__content {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
}

.welcome__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30.4px;
  line-height: 1.25;
  color: #2C2B26;
  margin: 0 0 18px;
}

.welcome__paragraph {
  font-family: var(--font-sans);
  font-size: 15.2px;
  line-height: 1.6;
  color: #5B5A52;
  margin: 0 0 12px;
  max-width: 560px;
}

.welcome__paragraph--spaced {
  margin-top: 18px;
}

.welcome__heart {
  color: #5F6E4F;
  margin-top: 10px;
  font-size: 28px;
}

/* ---------- Responsive Vorbereitung (Tablet/Mobile folgt später) ---------- */
@media (max-width: 900px) {
  .welcome__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================================
   ICH BIN VALENTINA
   Werte 1:1 aus der Referenzdatei übernommen.
   ========================================================= */
.valentina {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 24px;
  padding: 0 24px;
}

.valentina__inner {
  max-width: 1392px;
  margin: 0 auto;
  background: #F3EEE2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
}

/* Textspalte */
.valentina__text {
  padding: 50px 45px;
}

.valentina__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30.4px;
  line-height: 1.25;
  color: #2C2B26;
  margin: 0 0 18px;
}

.valentina__heading .accent {
  color: #5F6E4F;
  font-style: italic;
}

.valentina__roles {
  color: #2C2B26;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 16px;
}

.valentina__roles div {
  margin-bottom: 2px;
}

.valentina__paragraph {
  font-family: var(--font-sans);
  color: #5B5A52;
  font-size: 14.9px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 340px;
}

/* Bildspalte */
.valentina__img {
  position: relative;
  min-height: 340px;
  aspect-ratio: 900 / 1126;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-card);
}

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

.valentina__img-note {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 0 24px;
}

/* Badge-Liste */
.valentina__list {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.valentina__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 14.7px;
  color: #2C2B26;
}

.valentina__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.valentina__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- Responsive Vorbereitung (Tablet/Mobile folgt später) ---------- */
@media (max-width: 900px) {
  .valentina__inner {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WOBEI ICH EUCH BEGLEITE
   Werte 1:1 aus der Referenzdatei übernommen.
   ========================================================= */
.care {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 64px 24px;
}

.care__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30.4px;
  line-height: 1.25;
  color: #2C2B26;
  text-align: center;
  margin: 0 0 6px;
}

.care__divider {
  display: block;
  height: 13.5px;
  width: auto;
  margin-top: 18.5px;
  margin-bottom: 16.25px;
  margin-left: auto;
  margin-right: auto;
}

.care__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.care__inner {
  max-width: 1392px;
  margin: 0 auto;
}

.care__card {
  position: relative;
  background: #FCFAF7;
  border: 1px solid #E2DBC9;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.care__card-media {
  flex-shrink: 0;
  width: 130px;
  height: 221px;
  border-radius: 9px;
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.care__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.care__card-img-note {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 0 16px;
}

.care__card-body {
  width: 170px;
  padding: 22px 22px 26px;
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 3px;
  display: flex;
  flex-direction: column;
}

.care__card-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18.4px;
  color: #2C2B26;
  margin: 0 0 8px;
}

.care__card-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.care__card-body p {
  font-family: var(--font-sans);
  color: #5B5A52;
  font-size: 13.6px;
  margin: 0;
}

.care__card-body ul {
  list-style: none;
  color: #5B5A52;
  font-family: var(--font-sans);
  font-size: 13.6px;
  margin: 12.5px 0 16px;
  padding: 0;
  flex: 1;
}

.care__card-body ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 5px;
}

.care__card-body ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #5F6E4F;
}

.care__more {
  position: absolute;
  left: 145px;
  width: 185px;
  bottom: 20px;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5F6E4F;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

/* ---------- Responsive Vorbereitung (Tablet/Mobile folgt später) ---------- */
@media (max-width: 1024px) {
  .care__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .care__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SO LÄUFT EINE BEGLEITUNG AB
   Werte 1:1 aus der Referenzdatei übernommen.
   ========================================================= */
.steps-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0 24px 64px;
}

.steps-section__inner {
  max-width: 1392px;
  margin: 0 auto;
}

.steps-section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30.4px;
  line-height: 1.25;
  color: #2C2B26;
  text-align: center;
  margin: 0 0 6px;
}

.steps-section__divider {
  display: block;
  height: 13.5px;
  width: auto;
  margin-top: 18.5px;
  margin-bottom: 16.25px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1152px;
  margin: 50px auto 0;
  text-align: center;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 12%;
  right: 12%;
  height: 1px;
  background-image: linear-gradient(to right, #DDD4C8 50%, transparent 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  display: block;
}

.step {
  position: relative;
}

.step__num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #F3EEE2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.step__num img {
  width: 69.97px;
  height: 69.97px;
  max-width: none;
  object-fit: contain;
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 20.33px;
  color: #5F6E4F;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.step h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18.48px;
  color: #2C2B26;
  margin: 0 0 8px;
}

.step p {
  font-family: var(--font-sans);
  font-size: 13.6px;
  line-height: 1.6;
  color: #5B5A52;
  max-width: 190px;
  margin: 0 auto;
}

/* ---------- Responsive Vorbereitung (Tablet/Mobile folgt später) ---------- */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
}

/* =========================================================
   PSYCHOLOGIE TRIFFT GLAUBEN
   Werte 1:1 aus der Referenzdatei übernommen.
   ========================================================= */
.faith {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0 24px;
}

.faith__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #F3EEE2;
  display: grid;
  grid-template-columns: 38.95% 1fr;
  grid-template-rows: 1fr;
  gap: 0;
  border-radius: 0.2155cqw;
  overflow: hidden;
  aspect-ratio: 1392 / 300;
  container-type: inline-size;
  container-name: faithblock;
}

.faith__img {
  position: relative;
  height: 100%;
  min-height: 0;
  background: #F3EEE2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faith__img img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  filter: brightness(1.04);
}

.faith__img-note {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 0 24px;
}

.faith__body {
  padding: 3% 3.65%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 29.45%;
  grid-template-rows: 1fr;
  column-gap: 12.29%;
  align-items: center;
  height: 100%;
  min-height: 0;
}

.faith__content {
  min-width: 0;
  min-height: 0;
}

.faith__heading {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.069cqw;
  line-height: 1.25;
  color: #2C2B26;
  margin: 0;
}

.faith__heading-spacer {
  height: 0;
}

.faith__divider {
  display: block;
  height: 0.970cqw;
  width: auto;
  margin: 0.862cqw auto 0;
}

.faith__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.632fr) 20.92% minmax(0, 1fr);
  align-items: start;
  column-gap: 4%;
  width: 100%;
  margin-top: 1.437cqw;
}

.faith__col {
  display: flex;
  min-width: 0;
  gap: 0.718cqw;
  font-family: var(--font-sans);
  font-size: 0.956cqw;
  line-height: 1.6;
  color: #5B5A52;
}

.faith__col--right {
  position: relative;
  min-width: 0;
}

.faith__icon {
  width: 1.437cqw;
  height: 1.437cqw;
  object-fit: contain;
  flex-shrink: 0;
}

.faith__icon--gehirn {
  width: 2.874cqw;
  height: 2.874cqw;
  position: relative;
  top: 0.431cqw;
  left: -0.431cqw;
}

.faith__icon--herz {
  width: 2.874cqw;
  height: 2.874cqw;
  position: relative;
  top: 0.431cqw;
  left: -0.718cqw;
}

.faith__cross {
  text-align: center;
  padding-top: 0.431cqw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.287cqw;
  position: relative;
  top: 0.431cqw;
  width: 100%;
}

.faith__cross-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  position: relative;
  top: -1.379cqw;
}

.faith__note {
  font-family: var(--font-sans);
  font-size: 0.977cqw;
  line-height: 1.6;
  color: #5B5A52;
  margin-top: 1.293cqw;
  text-align: center;
}

.faith__quote {
  align-self: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 232 / 177;
  padding: 23.73% 9.914%;
  border: 0.15cqw solid #C9BD9C;
  border-radius: 0.2874cqw;
  font-family: var(--font-sans);
  font-size: 0.862cqw;
  line-height: 1.6;
  color: #5B5A52;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faith__quote-branch {
  position: absolute;
  right: 1.09%;
  bottom: 1.44%;
  width: 44.36%;
  height: auto;
  z-index: 0;
  opacity: 0.95;
}

.faith__quote p,
.faith__leaf {
  position: relative;
  z-index: 1;
}

.faith__quote p {
  margin: 0 0 0.287cqw;
}

.faith__leaf {
  margin-top: 14px;
}

/* ---------- Responsive Vorbereitung (Tablet/Mobile folgt später) ---------- */
@media (max-width: 950px) {
  .faith__inner {
    grid-template-columns: 1fr;
  }
  .faith__body {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   THEMEN, DIE EUCH BEWEGEN
   Werte 1:1 aus der Referenzdatei übernommen.
   ========================================================= */
.topics {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 64px 24px 30px;
}

.topics__inner {
  max-width: 1392px;
  margin: 0 auto;
}

.topics__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30.4px;
  line-height: 1.25;
  color: #2C2B26;
  text-align: center;
  margin: 0 0 6px;
}

.topics__divider {
  display: block;
  height: 13.5px;
  width: auto;
  margin: 14px auto;
}

.topics__tags {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 70px;
  gap: 14px;
  margin-top: 36px;
  width: 100%;
  max-width: 1392px;
  margin-left: auto;
  margin-right: auto;
}

.topics__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #DDD4C8;
  border-radius: 6px;
  padding: 20px 22px;
  font-family: var(--font-sans);
  font-size: 13.6px;
  background: #FCFAF7;
  color: #2C2B26;
}

.topics__tag--image {
  height: 70px;
  padding: 0;
  overflow: hidden;
}

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

.topics__tag--native {
  position: relative;
  min-width: 0;
  padding: 0;
  border: none;
  background: none;
  overflow: visible;
  z-index: 1;
}

.topics__tag-img--native {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.topics__tag-img--svada {
  transform: scale(0.66125);
}

.topics__tag-img--svada2 {
  transform: scale(0.52);
}

.topics__tag-img--povjerenje {
  transform: scale(0.55);
}

.topics__tag-img--oprostenje {
  transform: scale(0.53);
}

.topics__tag--icon12 {
  padding: 0;
}

.topics__ticon12 {
  width: 32px;
  height: 32px;
  object-fit: contain;
  max-width: none;
  transform: translateX(-30px);
  filter: brightness(0) saturate(100%) invert(38%) sepia(11%) saturate(1114%) hue-rotate(48deg) brightness(94%) contrast(87%);
}

.topics__tag--serif span {
  font-family: var(--font-serif);
  font-size: 17px;
}

.topics__ticon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  max-width: none;
}

/* =========================================================
   IMPULSE FÜR EUREN ALLTAG
   Struktur 1:1 aus der Referenzdatei übernommen.
   Bildflächen als Platzhalter in Website-Palette gestaltet,
   bis echte Fotos vom Kunden bereitgestellt werden.
   ========================================================= */
.impulse {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 30px 24px 64px;
}

.impulse__inner {
  max-width: 1392px;
  margin: 0 auto;
  position: relative;
}

.impulse__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30.4px;
  line-height: 1.25;
  color: #2C2B26;
  text-align: center;
  margin: 0 0 6px;
}

.impulse__divider {
  display: block;
  height: 13.5px;
  width: auto;
  margin: 14px auto 36px;
}

.impulse__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.1fr;
  gap: 0;
}

.impulse__item:nth-child(1) {
  background: #FFFFFF;
}

.impulse__item {
  background: #FCFAF7;
  border: 1px solid #DDD4C8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.impulse__media {
  height: 150px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.impulse__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px 6px 0 0;
}

.impulse__media-img--podcast {
  width: 233.04px;
  height: 135px;
  margin-left: 12.95px;
  margin-top: 12.95px;
  border-radius: 6px;
}

.impulse__media-img--clanci {
  width: 233.04px;
  height: 135px;
  margin-left: 12.95px;
  margin-top: 12.95px;
  border-radius: 6px;
}

.impulse__media-img--besplatni {
  width: 222.24px;
  height: 135px;
  margin-left: 12.35px;
  margin-top: 12.35px;
  border-radius: 6px;
}

.impulse__media-img--kontakt {
  width: 222.24px;
  height: 135px;
  margin-left: 12.35px;
  margin-top: 12.35px;
  border-radius: 6px;
}

.impulse__media--1 { background: #FCFAF7; }
.impulse__media--2 { background: #FCFAF7; }
.impulse__media--3 { background: #FCFAF7; }
.impulse__media--4 { background: #FCFAF7; }

.impulse__body {
  padding: 24px 22px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.impulse__body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19.2px;
  color: #2C2B26;
  margin: 0 0 -4px;
  text-align: center;
  position: relative;
  top: -12px;
}

.impulse__body p {
  font-family: var(--font-sans);
  font-size: 13.28px;
  color: #5B5A52;
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
  text-align: center;
}

.impulse__item:nth-child(-n+3) {
  align-self: start;
}

.impulse__item:nth-child(1),
.impulse__item:nth-child(2) {
  margin-right: 12px;
}

.impulse__item:nth-child(3),
.impulse__item:nth-child(4) {
  margin-right: 24px;
}

.impulse__item:nth-child(4) {
  align-self: start;
  height: 410.22px;
}

.impulse__item:nth-child(-n+3) .impulse__body {
  padding-bottom: 24px;
  flex: none;
}

.impulse__item:nth-child(-n+3) .impulse__body p {
  flex: none;
}

.impulse__more {
  font-family: var(--font-sans);
  font-size: 11.2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5F6E4F;
  font-weight: 500;
  text-align: center;
  display: block;
  text-decoration: none;
}

.impulse__item:nth-child(4) .impulse__body p {
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.impulse__links {
  list-style: none;
  font-family: var(--font-sans);
  font-size: 16.32px;
  color: #5B5A52;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
  gap: 1px;
  padding: 0;
}

.impulse__links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.impulse__licon-img {
  width: 38.4px;
  height: 38.4px;
  object-fit: contain;
  max-width: none;
}

.impulse__licon-img--email {
  transform: scale(1.0835);
}

.impulse__licon-img--podcast {
  transform: scale(1.3622);
}

.impulse__licon {
  color: #5F6E4F;
}

.impulse__quote {
  background: #5F6E4F;
  border: 1px solid #DDD4C8;
  border-radius: 6px;
  overflow: hidden;
  align-self: start;
  height: 410.22px;
}

.impulse__quote-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: -1px;
  transform: scale(1.2);
  filter: brightness(1.04);
}

.impulse__qmark {
  font-family: var(--font-serif);
  font-size: 25.6px;
  color: #F3EEE2;
}

.impulse__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.impulse__ref {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.impulse__qheart {
  font-size: 17.6px;
}

/* =========================================================
   ZWEI ZUSÄTZLICHE BLÖCKE UNTER DER IMPULSE-REIHE
   Linke Kante = Podcast-Foto links, rechte Kante = Besplatni
   materijali-Foto rechts. Abstand zwischen den Blöcken = 12px
   (identisch zu Podcast/Članci). Verhältnis 1.4fr/1fr wie im
   Referenz-Footer.
   ========================================================= */
.impulse__footer-row {
  display: flex;
  width: 57.0986%;
  height: 102.4px;
  position: absolute;
  left: 0;
  top: 409.34px;
  gap: 12px;
}

.impulse__footer-brand {
  flex: 1.4;
  background: #5F6E4F;
  border-radius: 6px;
  overflow: hidden;
}

.impulse__footer-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.04);
}

.impulse__footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.impulse__footer-logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.impulse__footer-logo-name {
  font-family: var(--font-serif);
  font-size: 15.6px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.impulse__footer-logo-tag {
  font-family: var(--font-sans);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: #E9E6DD;
  margin-top: 3px;
}

.impulse__footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  opacity: 0.85;
  margin-top: 24px;
}

.impulse__footer-bottom a {
  margin-right: 12px;
  color: #fff;
  text-decoration: none;
}

.impulse__footer-images {
  flex: 1;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.impulse__footer-img {
  width: 100%;
  height: 100%;
}

.impulse__footer-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.04);
}

.impulse__footer-img--1 { background: #E9E3D4; }
.impulse__footer-img--2 { background: #DCE0D0; }

/* =========================================================
   KLEINE RECHTLICHE FUSSZEILE UNTER DEN FOOTER-BLÖCKEN
   ========================================================= */
.impulse__legal {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 456.64px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  color: #7A7167;
}

.impulse__legal a {
  color: #7A7167;
  text-decoration: none;
}

/* =========================================================
   ============  RESPONSIVE LAYER  =========================
   Desktop (>=1280px) bleibt exakt wie oben (1:1).
   Tablet:  768px - 1279px
   Handy:   <= 767px
   Ziel: keine Ueberschneidungen, sinnvolle Anordnung,
   Elemente duerfen zentriert/symmetrisch werden
   (Ausnahme: das bewusst asymmetrische goldene Kreuz).
   ========================================================= */

/* Verhindert horizontales Scrollen durch 100vw-Full-Bleed + Scrollbar */
@media (max-width: 1279px) {
  html, body { overflow-x: hidden; }
}

/* ---------- Burger-Button (global, auf Desktop unsichtbar) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #2C2B26;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile-Drawer (global versteckt, per Media-Query aktiv) ---------- */
.mobile-nav { display: none; }

/* =========================================================
   TABLET  (768px - 1279px)
   ========================================================= */
@media (min-width: 768px) and (max-width: 1279px) {

  /* ---------- HEADER ---------- */
  .site-header {
    position: relative;
    margin-top: 0;
    background: #F6F1E8;
    border-bottom: 1px solid #E7DFD1;
    z-index: 30;
  }
  .site-header__inner {
    max-width: none;
    width: 100%;
    height: 66px;
    top: 0;
    padding: 0 24px;
  }
  .logo--aligned,
  .header-cta--fixed,
  .header-cta--original,
  .main-nav { display: none; }

  .logo--original {
    visibility: visible;
    margin-left: 0;
    align-items: center;
  }
  .logo__icon { height: 62px; margin-top: 0; }
  .logo__text { width: auto; }
  .logo__wordmark-text { font-size: 25px; letter-spacing: 5.853px; }
  html[lang="de"] .logo__wordmark-text { letter-spacing: 7.798px; }
  .logo__tagline-text { font-size: 8.4px; margin-top: 6px; letter-spacing: 0.688px; }
  html[lang="de"] .logo__tagline-text { letter-spacing: 0.605px; }

  .nav-toggle { display: flex; }

  .mobile-nav {
    display: block;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #F8F4EE;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 40;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .mobile-nav.is-open {
    max-height: 560px;
    border-bottom: 1px solid #DDD4C8;
  }
  .mobile-nav ul { list-style: none; margin: 0; padding: 8px 24px 8px; display: flex; flex-direction: column; }
  .mobile-nav li { border-bottom: 1px solid #EDE7DA; }
  .mobile-nav a {
    display: block; padding: 15px 4px;
    font-family: var(--font-sans); font-size: 15px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #2C2B26; text-decoration: none;
  }
  .mobile-nav__cta {
    display: block; width: calc(100% - 48px);
    margin: 16px 24px 24px; text-align: center;
    font-size: 13px; padding: 14px 20px;
  }

  /* ---------- HERO ---------- */
  .hero { aspect-ratio: auto; height: auto; min-height: 540px; margin-top: 0; }
  .hero::before {
    background: linear-gradient(100deg,
      rgba(250, 246, 238, 0.90) 0%,
      rgba(250, 246, 238, 0.58) 42%,
      rgba(250, 246, 238, 0.16) 68%,
      rgba(250, 246, 238, 0) 82%);
  }
  .hero__inner { aspect-ratio: auto; height: auto; padding: 0 40px; }
  .hero__content { max-width: 620px; margin-left: 0; padding-top: 60px; padding-bottom: 64px; }
  .hero__heading { font-size: clamp(32px, 4.9vw, 43px); margin: 0 0 20px; }
  .hero__paragraph { font-size: clamp(15px, 2vw, 17px); max-width: 560px; }
  .hero__paragraph br { display: none; }
  .hero__divider { width: 36px; height: 1px; margin: 16px 0; }
  .hero__actions { position: static; gap: 16px; margin-top: 30px; }
  .hero__actions .btn { font-size: 13px; letter-spacing: 1.5px; padding: 15px 28px; }

  /* ---------- WELCOME ---------- */
  .welcome__inner { grid-template-columns: 1fr 1.35fr; }
  .welcome__media { min-height: 100%; }
  .welcome__content { padding: 34px 34px; justify-content: center; }
  .welcome__heading { font-size: 25px; margin: 0 0 14px; }
  .welcome__paragraph { font-size: 14px; max-width: none; margin: 0 0 9px; }
  .welcome__paragraph--spaced { margin-top: 14px; }
  .welcome__heart { font-size: 22px; margin-top: 8px; }

  /* ---------- VALENTINA ---------- */
  .valentina__inner { grid-template-columns: 1fr 1fr; }
  .valentina__text { grid-column: 1 / 3; padding: 34px 40px 8px; }
  .valentina__img { grid-column: 1; grid-row: 2; height: 100%; min-height: 360px; aspect-ratio: auto; }
  .valentina__list { grid-column: 2; grid-row: 2; padding: 26px 30px; gap: 16px; justify-content: center; }
  .valentina__heading { font-size: 25px; margin: 0 0 12px; }
  .valentina__roles { font-size: 14.5px; margin-bottom: 12px; }
  .valentina__paragraph { max-width: none; font-size: 14px; margin: 0 0 10px; }
  .valentina__item { font-size: 14px; gap: 14px; }
  .valentina__icon { width: 48px; height: 48px; }

  /* ---------- CARE ---------- */
  .care__grid { grid-template-columns: 1fr 1fr; }
  .care__card { align-items: stretch; justify-content: flex-start; }
  .care__card-media { width: 38%; height: auto; min-height: 100%; align-self: stretch; border-radius: 9px 0 0 9px; }
  .care__card-body { width: auto; flex: 1; align-self: stretch; margin-top: 0; position: relative; padding: 22px 22px 54px; }
  .care__card-body p { min-height: 2.6em; }
  .care__card-body ul { flex: 1 0 auto; }
  .care__more { left: 22px; right: 22px; width: auto; text-align: left; bottom: 18px; }

  /* ---------- STEPS ---------- */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; max-width: 640px; }
  .steps::before { display: none; }

  /* ---------- FAITH ---------- */
  .faith__inner { grid-template-columns: 1fr; aspect-ratio: auto; }
  .faith__img { height: auto; min-height: 260px; }
  .faith__body { grid-template-columns: 1fr; padding: 36px 40px 40px; row-gap: 24px; }
  .faith__heading { font-size: 25px; }
  .faith__divider { height: 12px; margin: 12px auto 0; }
  .faith__columns { grid-template-columns: minmax(0, 1.5fr) auto minmax(0, 1fr); column-gap: 6%; align-items: start; margin-top: 26px; }
  .faith__col { font-size: 14px; gap: 10px; }
  .faith__col span { max-width: none; }
  .faith__icon { width: 22px; height: 22px; }
  .faith__icon--gehirn, .faith__icon--herz { width: 40px; height: 40px; position: static; top: 0; left: 0; }
  .faith__cross { width: auto; position: static; top: 0; padding-top: 4px; }
  .faith__cross-icon { width: 54px; height: auto; position: static; top: 0; }
  .faith__note { font-size: 14px; margin-top: 22px; }
  .faith__quote { aspect-ratio: auto; padding: 26px 28px; font-size: 14px; max-width: 460px; margin: 4px auto 0; }

  /* ---------- TOPICS ---------- */
  .topics__tags { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 66px; gap: 12px; }
  .topics__tag { font-size: 13px; padding: 14px 12px; }

  /* ---------- IMPULSE + FOOTER ---------- */
  .impulse__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .impulse__grid .impulse__item { margin: 0 !important; align-self: stretch !important; height: auto !important; }
  .impulse__grid .impulse__item:nth-child(4) { height: auto !important; }
  .impulse__quote { grid-column: 1 / 3; height: auto !important; min-height: 320px; align-self: stretch !important; }
  .impulse__media { height: auto; aspect-ratio: 16 / 9; }
  .impulse__media-img,
  .impulse__media-img--podcast,
  .impulse__media-img--clanci,
  .impulse__media-img--besplatni,
  .impulse__media-img--kontakt {
    width: 100% !important; height: 100% !important;
    margin: 0 !important; border-radius: 6px 6px 0 0 !important;
  }
  .impulse__body { padding: 22px 22px 26px; }
  .impulse__item:nth-child(-n+3) .impulse__body { padding-bottom: 26px; }
  .impulse__footer-row { position: static; width: 100%; height: auto; gap: 20px; margin-top: 20px; }
  .impulse__footer-brand, .impulse__footer-images { min-height: 150px; }
  .impulse__legal { width: 100%; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
}

/* =========================================================
   HANDY  (<= 767px)
   ========================================================= */
@media (max-width: 767px) {

  /* ---------- HEADER ---------- */
  .site-header {
    position: relative;
    margin-top: 0;
    background: #F6F1E8;
    border-bottom: 1px solid #E7DFD1;
    z-index: 30;
  }
  .site-header__inner {
    max-width: none;
    width: 100%;
    height: 60px;
    top: 0;
    padding: 0 18px;
  }
  .logo--aligned,
  .header-cta--fixed,
  .header-cta--original,
  .main-nav { display: none; }

  .logo { align-items: center; }
  .logo--original { visibility: visible; margin-left: 0; align-items: center; gap: 10px; }
  .logo__icon { height: 54px; margin-top: 0; }
  .logo__text { width: auto; }
  .logo__wordmark-text { font-size: 22px; letter-spacing: 4.441px; }
  html[lang="de"] .logo__wordmark-text { letter-spacing: 6.110px; }
  .logo__tagline-text { font-size: 7.28px; margin-top: 5px; letter-spacing: 0.505px; }
  html[lang="de"] .logo__tagline-text { letter-spacing: 0.432px; }

  .nav-toggle { display: flex; }

  .mobile-nav {
    display: block;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #F8F4EE;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 40;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .mobile-nav.is-open { max-height: 560px; border-bottom: 1px solid #DDD4C8; }
  .mobile-nav ul { list-style: none; margin: 0; padding: 6px 22px; display: flex; flex-direction: column; }
  .mobile-nav li { border-bottom: 1px solid #EDE7DA; }
  .mobile-nav a {
    display: block; padding: 15px 4px;
    font-family: var(--font-sans); font-size: 15px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #2C2B26; text-decoration: none;
  }
  .mobile-nav__cta {
    display: block; width: calc(100% - 44px);
    margin: 16px 22px 22px; text-align: center;
    font-size: 13px; padding: 14px 20px;
  }

  /* ---------- HERO ---------- */
  .hero { aspect-ratio: auto; height: auto; min-height: 0; margin-top: 0; }
  .hero::before {
    background: linear-gradient(to bottom,
      rgba(250, 246, 238, 0.94) 0%,
      rgba(250, 246, 238, 0.74) 46%,
      rgba(250, 246, 238, 0.34) 100%);
  }
  .hero__bg img { object-position: 62% top; }
  .hero__inner { aspect-ratio: auto; height: auto; padding: 0 22px; }
  .hero__content { max-width: none; margin-left: 0; padding-top: 40px; padding-bottom: 44px; }
  .hero__heading { font-size: clamp(23px, 6.7vw, 31px); margin: 0 0 16px; }
  .hero__paragraph { font-size: 14.5px; max-width: none; }
  .hero__paragraph br { display: none; }
  .hero__divider { width: 32px; height: 1px; margin: 14px 0; }
  .hero__actions { position: static; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 26px; }
  .hero__actions .btn { width: 100%; font-size: 12.8px; letter-spacing: 1.5px; padding: 15px 26px; }

  /* ---------- WELCOME ---------- */
  .welcome__inner { grid-template-columns: 1fr; }
  .welcome__media { min-height: 220px; }
  .welcome__content { padding: 28px 24px; }
  .welcome__heading { font-size: 23px; margin: 0 0 12px; }
  .welcome__paragraph { font-size: 14.5px; max-width: none; margin: 0 0 10px; }
  .welcome__paragraph--spaced { margin-top: 14px; }
  .welcome__heart { font-size: 22px; }

  /* ---------- VALENTINA ---------- */
  .valentina__inner { grid-template-columns: 1fr; }
  .valentina__text { grid-column: 1; padding: 28px 24px 4px; }
  .valentina__img { grid-column: 1; height: auto; min-height: 300px; aspect-ratio: auto; }
  .valentina__list { grid-column: 1; padding: 24px; gap: 16px; }
  .valentina__heading { font-size: 23px; margin: 0 0 12px; }
  .valentina__roles { font-size: 14.5px; margin-bottom: 12px; }
  .valentina__paragraph { max-width: none; font-size: 14.5px; margin: 0 0 12px; }
  .valentina__item { font-size: 14.5px; gap: 14px; }
  .valentina__icon { width: 46px; height: 46px; }

  /* ---------- CARE ---------- */
  .care { padding: 44px 20px; }
  .care__grid { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
  .care__card { align-items: stretch; justify-content: flex-start; }
  .care__card-media { width: 38%; max-width: 150px; height: auto; min-height: 100%; align-self: stretch; border-radius: 9px 0 0 9px; }
  .care__card-body { width: auto; flex: 1; align-self: stretch; margin-top: 0; position: relative; padding: 20px 20px 52px; }
  .care__card-body ul { flex: 1 0 auto; }
  .care__more { left: 20px; right: 20px; width: auto; text-align: left; bottom: 16px; }
  .care__title, .steps-section__title, .topics__title, .impulse__title { font-size: 25px; }

  /* ---------- STEPS ---------- */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; max-width: 420px; margin-top: 36px; }
  .steps::before { display: none; }
  .step p { font-size: 13px; max-width: 160px; }

  /* ---------- FAITH ---------- */
  .faith__inner { grid-template-columns: 1fr; aspect-ratio: auto; }
  .faith__img { height: auto; min-height: 210px; }
  .faith__body { grid-template-columns: 1fr; padding: 30px 24px 34px; row-gap: 22px; }
  .faith__heading { font-size: 23px; }
  .faith__divider { height: 12px; margin: 12px auto 0; }
  .faith__columns { grid-template-columns: 1fr; row-gap: 20px; margin-top: 22px; justify-items: center; }
  .faith__col { font-size: 14.5px; gap: 12px; max-width: 340px; text-align: left; }
  .faith__col span { max-width: none; }
  .faith__icon { width: 22px; height: 22px; }
  .faith__icon--gehirn, .faith__icon--herz { width: 40px; height: 40px; position: static; top: 0; left: 0; }
  .faith__cross { width: auto; position: static; top: 0; padding-top: 0; }
  .faith__cross-icon { width: 50px; height: auto; position: static; top: 0; }
  .faith__note { font-size: 14.5px; margin-top: 20px; }
  .faith__quote { aspect-ratio: auto; padding: 24px 26px; font-size: 14px; max-width: none; margin: 6px 0 0; }
  .faith__quote-branch { width: 30%; bottom: 8px; right: 8px; }

  /* ---------- TOPICS ---------- */
  .topics { padding: 44px 20px 24px; }
  .topics__tags { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 60px; gap: 10px; margin-top: 28px; }
  .topics__tag { font-size: 13px; padding: 10px; gap: 8px; }
  .topics__ticon { width: 24px; height: 24px; }

  /* ---------- IMPULSE + FOOTER ---------- */
  .impulse { padding: 24px 20px 48px; }
  .impulse__grid { grid-template-columns: 1fr; gap: 18px; }
  .impulse__grid .impulse__item { margin: 0 !important; align-self: stretch !important; height: auto !important; }
  .impulse__grid .impulse__item:nth-child(4) { height: auto !important; }
  .impulse__quote { grid-column: auto; height: auto !important; min-height: 260px; align-self: stretch !important; }
  .impulse__media { height: auto; aspect-ratio: 16 / 9; }
  .impulse__media-img,
  .impulse__media-img--podcast,
  .impulse__media-img--clanci,
  .impulse__media-img--besplatni,
  .impulse__media-img--kontakt {
    width: 100% !important; height: 100% !important;
    margin: 0 !important; border-radius: 6px 6px 0 0 !important;
  }
  .impulse__body { padding: 20px 20px 24px; }
  .impulse__item:nth-child(-n+3) .impulse__body { padding-bottom: 24px; }
  .impulse__body h3 { top: 0; margin: 0 0 6px; }
  .impulse__footer-row { position: static; width: 100%; height: auto; flex-direction: column; gap: 16px; margin-top: 18px; }
  .impulse__footer-brand, .impulse__footer-images { min-height: 0; }
  .impulse__footer-img { height: auto; }
  .impulse__footer-brand-img, .impulse__footer-img-photo { height: auto; display: block; }
  .impulse__legal { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 16px; margin-top: 24px; }
}


/* =========================================================
   ============  KONTAKT-SEITE (kontakt.html)  =============
   Nutzt Header/Buttons/Tokens des globalen Stylesheets.
   ========================================================= */
.contact {
  width: 100%;
}

.contact__inner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  align-items: stretch;
  min-height: 620px;
}

/* Linke Textspalte */
.contact__left {
  padding: 40px clamp(32px, 5vw, 72px) 72px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.contact__eyebrow-branch {
  width: 46px;
  height: auto;
  margin: 0 auto 12px;
  opacity: 0.9;
}

.contact__eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 14px;
  font-weight: 500;
  color: #7A7167;
  margin: 0 0 14px;
}

.contact__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.08;
  color: #2C2B26;
  margin: 0;
}

.contact__divider {
  display: block;
  height: 14px;
  width: auto;
  margin: 22px auto 26px;
}

.contact__text {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: #5B5A52;
  margin: 0 0 32px;
}

/* Kontaktdaten */
.contact__details {
  list-style: none;
  text-align: left;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 36px;
  padding: 0;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.4;
  color: #3B352F;
}

.contact__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #6D7654;
  margin-top: 1px;
}

.contact__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact__details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__details a:hover,
.contact__details a:focus-visible {
  color: #5F6E4F;
}

/* CTA-Button */
.contact__cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact__cta-heart {
  width: 18px;
  height: 18px;
}

/* Bildspalte */
.contact__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--color-card);
}

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

/* Weicher, gefederter Übergang NUR an der linken (seitlichen) Foto-Kante
   in den Hintergrund — wie im Zielentwurf. Kein oben/unten (kein Rahmen),
   rechts randlos (Bildschirmkante). */
.contact__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #F9F5EB 0%,
    rgba(249, 245, 235, 0.72) 8%,
    rgba(249, 245, 235, 0.30) 16%,
    rgba(249, 245, 235, 0) 30%
  );
}

/* Zitat-Streifen unten */
.contact__quote {
  text-align: center;
  padding: 40px 24px 56px;
  background: #FBF7F0;
}

.contact__quote-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  color: #3B352F;
  max-width: 760px;
  margin: 0 auto 8px;
}

.contact__quote-ref {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  color: #7A7167;
  margin: 0;
}

.contact__quote-branch {
  width: 40px;
  height: auto;
  margin: 18px auto 0;
  opacity: 0.85;
}

/* ---------- Kontakt: Tablet quer (2-spaltig, seitliche Federung bleibt) ----- */
@media (min-width: 768px) and (max-width: 1100px) {
  .contact__inner {
    grid-template-columns: 46fr 54fr;
  }
  .contact__left {
    padding: 40px clamp(28px, 4vw, 56px) 56px;
  }
  .contact__heading {
    font-size: clamp(32px, 4.6vw, 44px);
  }
}

/* ---------- Kontakt: Handy (gestapelt, volle Breite → keine Federung) ------- */
@media (max-width: 767px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__left {
    padding: 40px 32px 44px;
  }
  .contact__media {
    min-height: 0;
    aspect-ratio: 3 / 2;
    margin: 0 32px;          /* nur Breitenanpassung: auf Button-Breite einrücken */
    border-radius: 6px;      /* Ecken leicht abgerundet */
  }
  /* keine Federung/kein Rahmen */
  .contact__media::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .contact__left {
    padding: 34px 22px 40px;
  }
  .contact__heading {
    font-size: 34px;
  }
  .contact__text {
    font-size: 15px;
  }
  .contact__details {
    align-self: center;
  }
  .contact__details li {
    font-size: 16px;
  }
  .contact__cta {
    align-self: stretch;
    justify-content: center;
  }
  .contact__media {
    aspect-ratio: 4 / 3;
    margin: 0 22px;          /* Button-Breite bei ≤560px */
  }
  .contact__quote {
    padding: 32px 20px 44px;
  }
  .contact__quote-text {
    font-size: 18px;
  }
}


/* Impulse-Kontakt: verlinkte Einträge (Layout/Farbe wie zuvor) */
.impulse__body h3 a { color: inherit; text-decoration: none; }
.impulse__links a {
  display: inline-flex;
  align-items: center;
  gap: inherit;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.impulse__links a:hover,
.impulse__links a:focus-visible { color: #5F6E4F; }


/* =========================================================
   ============  DROPDOWN-NAVIGATION  =====================
   Ergänzt die bestehende Navigation um Untermenüs.
   Desktop: Hover/Focus. Mobile: Akkordeon im Burger.
   ========================================================= */
.nav-caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ---------- Desktop ---------- */
.main-nav .has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #FCFAF7;
  border: 1px solid #E7DFD1;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.main-nav .has-dropdown:hover > .nav-dropdown,
.main-nav .has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li { display: block; }

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.3;
  color: #3B352F;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible { color: #5F6E4F; background: #F3EEE2; }

/* Mobile-Dropdowns (im Burger-Drawer): grundsätzlich versteckt */
.m-has-dropdown .m-dropdown { display: none; }
.m-dropdown-toggle { display: none; }

/* =========================================================
   FOOTER-LOGO (heller Text auf dunklem Grund)
   ========================================================= */
.logo--footer {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo--footer .logo__icon {
  height: 74px; width: auto; margin-top: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo--footer .logo__text { width: auto; }
.logo--footer .logo__wordmark-text { font-size: 30px; letter-spacing: 5.36px; color: #F3EEE2; }
.logo--footer .logo__tagline-text { font-size: 8.4px; letter-spacing: 1.318px; color: #C9C3B4; margin-top: 6px; }
html[lang="de"] .logo--footer .logo__tagline-text { letter-spacing: 0.800px; }

/* =========================================================
   PODCAST — HERO
   ========================================================= */
.pod-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -78px;
  padding-top: 78px;
  background: #F5EFE5;
  overflow: hidden;
}

.pod-hero__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  min-height: 560px;
}

.pod-hero__text {
  padding: 48px clamp(28px, 4vw, 56px) 56px clamp(28px, 6vw, 100px);
}

.pod-hero__eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 13px;
  font-weight: 500;
  color: #7A7167;
  margin: 0 0 18px;
}

.pod-hero__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.12;
  color: #2C2B26;
  margin: 0 0 22px;
}
.pod-hero__heading .accent { color: #5F6E4F; font-style: italic; }

.pod-hero__paragraph {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: #5B5A52;
  margin: 0 0 30px;
  max-width: 520px;
}

.pod-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.pod-hero__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: #5B5A52;
}
.pod-hero__note-heart {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid #CFC7B6;
  display: flex; align-items: center; justify-content: center;
  color: #5F6E4F;
}
.pod-hero__note-heart svg { width: 17px; height: 17px; }

.pod-hero__media {
  position: relative;
  align-self: stretch;
  min-height: 480px;
  overflow: hidden;
}
.pod-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pod-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right,
    #F5EFE5 0%, rgba(245, 239, 229, 0.7) 8%, rgba(245, 239, 229, 0.28) 16%, rgba(245, 239, 229, 0) 30%);
}

/* =========================================================
   PODCAST — FEATURES
   ========================================================= */
.pod-features {
  width: 100%;
  padding: 56px 24px 8px;
}
.pod-features__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.pod-feature { text-align: left; }
.pod-feature__icon {
  display: inline-flex;
  width: 34px; height: 34px;
  color: #6D7654;
  margin-bottom: 16px;
}
.pod-feature__icon svg { width: 100%; height: 100%; }
.pod-feature h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: #2C2B26;
  margin: 0 0 8px;
}
.pod-feature p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: #5B5A52;
  margin: 0;
}

/* =========================================================
   PODCAST — NEDAVNI OBJAVE (Episoden)
   ========================================================= */
.episodes { width: 100%; padding: 48px 24px; }
.episodes__inner { max-width: 1240px; margin: 0 auto; }

.episodes__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.episodes__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  color: #2C2B26;
  margin: 0;
}
.episodes__all {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5F6E4F;
  text-decoration: none;
  white-space: nowrap;
}
.episodes__all:hover { color: #2C2B26; }

.episodes__list { list-style: none; margin: 16px 0 0; padding: 0; }

.episode {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid #E7DFD1;
}
.episode:first-child { border-top: 1px solid #E7DFD1; }

.episode__thumb {
  grid-column: 1;
  width: 140px; height: 84px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-card);
}
.episode__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.episode__play {
  position: absolute;
  left: 116px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #FCFAF7;
  border: 1px solid #DDD4C8;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: #5F6E4F;
  z-index: 2;
  transition: transform 0.2s ease, color 0.2s ease;
}
.episode__play:hover { transform: translateY(-50%) scale(1.06); color: #2C2B26; }
.episode__play svg { width: 17px; height: 17px; margin-left: 2px; }

.episode__body { grid-column: 2; min-width: 0; padding-left: 26px; }
.episode__date {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A9081;
  margin: 0 0 5px;
}
.episode__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  color: #2C2B26;
  margin: 0 0 5px;
}
.episode__desc {
  font-family: var(--font-sans);
  font-size: 13.6px;
  line-height: 1.55;
  color: #5B5A52;
  margin: 0;
}
.episode__time {
  grid-column: 3;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #7A7167;
  white-space: nowrap;
}

/* =========================================================
   PODCAST — TEME (Chips)
   ========================================================= */
.pdtopics { width: 100%; padding: 40px 24px 8px; }
.pdtopics__inner { max-width: 1240px; margin: 0 auto; }
.pdtopics__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  color: #2C2B26;
  margin: 0 0 24px;
}
.pdtopics__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
/* Flip-Karte: Vorderseite Titel, Rückseite Beschreibung */
/* Flip-Karte: Vorderseite unverändert (Icon + Titel), Rückseite Beschreibung */
.pdtopic {
  position: relative;
  height: 164px;
  padding: 0;
  border: 0;
  background: transparent;
  perspective: 1100px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font: inherit;
}
.pdtopic__flip {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pdtopic.is-flipped .pdtopic__flip { transform: rotateY(180deg); }
.pdtopic__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px 16px;
  border: 1px solid #E2DBC9;
  border-radius: 10px;
  background: #FCFAF7;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pdtopic__back { transform: rotateY(180deg); background: #F3EEE2; }
.pdtopic:hover .pdtopic__face { border-color: #C9BD9C; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); }
.pdtopic__icon { width: 34px; height: 34px; object-fit: contain; }
.pdtopic__name {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: #2C2B26;
  line-height: 1.35;
}
.pdtopic__desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #5B5A52;
  line-height: 1.55;
}
.pdtopics__more { text-align: center; margin-top: 28px; }
.pdtopics__more .btn { padding: 12px 26px; }

/* =========================================================
   PODCAST — O MENI (Band)
   ========================================================= */
.ometni { width: 100%; padding: 56px 24px; }
.ometni__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  background: #F3EEE2;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: stretch;
}
.ometni__media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--color-card);
}
.ometni__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ometni__body {
  padding: 48px clamp(28px, 4vw, 56px);
  align-self: center;
  position: relative;
  z-index: 1;
}
.ometni__eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 500;
  color: #7A7167;
  margin: 0 0 14px;
}
.ometni__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.18;
  color: #2C2B26;
  margin: 0 0 18px;
}
.ometni__text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: #5B5A52;
  margin: 0 0 26px;
  max-width: 420px;
}
.ometni__branch {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: 150px;
  height: auto;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { width: 100%; padding: 8px 24px 56px; }
.newsletter__inner {
  max-width: 1240px;
  margin: 0 auto;
  background: #F3EEE2;
  border-radius: 10px;
  padding: 34px clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.newsletter__icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #5F6E4F;
  color: #FCFAF7;
  display: flex; align-items: center; justify-content: center;
}
.newsletter__icon svg { width: 26px; height: 26px; }
.newsletter__text { flex: 1 1 260px; }
.newsletter__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: #2C2B26;
  margin: 0 0 6px;
}
.newsletter__text p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: #5B5A52;
  margin: 0;
  max-width: 420px;
}
.newsletter__form {
  flex: 1 1 340px;
  display: flex;
  gap: 12px;
  background: #FCFAF7;
  border: 1px solid #DDD4C8;
  border-radius: 6px;
  padding: 8px 8px 8px 18px;
  align-items: center;
}
.newsletter__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #3B352F;
  min-width: 0;
}
.newsletter__input::placeholder { color: #9A9081; }
.newsletter__btn { flex-shrink: 0; padding: 12px 26px; }

/* =========================================================
   SITE-FOOTER (großer Footer)
   ========================================================= */
.site-footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #2C2B26;
  color: #C9C3B4;
  padding: 56px 24px 0;
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer__about {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: #A8A296;
  margin: 20px 0 0;
  max-width: 320px;
}
.site-footer__col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E7E1D4;
  margin: 0 0 16px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #A8A296;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__col a:hover { color: #F3EEE2; }
.site-footer__brigu {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
  color: #A8A296;
  margin: 0 0 20px;
}
.site-footer__brigu-heart {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid #55534C;
  display: flex; align-items: center; justify-content: center;
  color: #9BA48A;
}
.site-footer__brigu-heart svg { width: 15px; height: 15px; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #55534C;
  display: flex; align-items: center; justify-content: center;
  color: #C9C3B4;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-footer__social a:hover { background: #5F6E4F; color: #FFF; border-color: #5F6E4F; }
.site-footer__social svg { width: 18px; height: 18px; }

.site-footer__bottom {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid #423F39;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #8A857A;
}
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; gap: 20px; }
.site-footer__legal a { color: #8A857A; text-decoration: none; }
.site-footer__legal a:hover { color: #C9C3B4; }


/* =========================================================
   MOBILE-DROPDOWNS im Burger-Drawer (≤1279px)
   ========================================================= */
@media (max-width: 1279px) {
  .mobile-nav .m-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 15px 4px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2C2B26;
    cursor: pointer;
  }
  .mobile-nav .m-dropdown-toggle .nav-caret { transition: transform 0.25s ease; }
  .mobile-nav .m-has-dropdown.is-open .m-dropdown-toggle .nav-caret { transform: rotate(180deg); }
  .mobile-nav .m-dropdown {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .mobile-nav .m-has-dropdown.is-open .m-dropdown { max-height: 340px; padding-bottom: 6px; }
  .mobile-nav .m-dropdown li { border-bottom: none; }
  .mobile-nav .m-dropdown a {
    padding: 10px 4px 10px 18px;
    font-size: 13.5px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #5B5A52;
  }
}

/* =========================================================
   PODCAST — RESPONSIVE
   ========================================================= */
@media (max-width: 1023px) {
  .pod-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .pod-hero__text { padding: 40px 32px 36px; }
  .pod-hero__media { min-height: 0; aspect-ratio: 16 / 10; }
  .pod-hero__media::before { display: none; }
  .pod-features__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
  .pdtopics__grid { grid-template-columns: repeat(3, 1fr); }
  .ometni__inner { grid-template-columns: 40% 1fr; }
  .ometni__branch { width: 110px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / 3; }
}

@media (max-width: 767px) {
  .pod-hero { margin-top: 0; padding-top: 0; }
  .pod-hero__text { padding: 34px 22px 32px; }
  .pod-hero__heading { font-size: clamp(28px, 8vw, 36px); }
  .pod-hero__actions .btn { flex: 1 1 auto; text-align: center; }

  .pod-features { padding: 40px 20px 0; }
  .pod-features__inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }

  .episodes { padding: 36px 20px; }
  .episode {
    grid-template-columns: 96px 1fr;
    gap: 0 16px;
    padding: 16px 0;
  }
  .episode__thumb { width: 96px; height: 72px; }
  .episode__play { left: 76px; width: 40px; height: 40px; }
  .episode__play svg { width: 15px; height: 15px; }
  .episode__body { padding-left: 22px; padding-right: 44px; }
  .episode__title { font-size: 17px; }
  .episode__desc { font-size: 13px; }
  .episode__time { position: absolute; top: 16px; right: 0; grid-column: auto; }

  .pdtopics { padding: 36px 20px 8px; }
  .pdtopics__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pdtopic { height: 158px; }
  .pdtopic__face { padding: 20px 12px; }

  .ometni { padding: 44px 20px; }
  .ometni__inner { grid-template-columns: 1fr; }
  .ometni__media { min-height: 240px; }
  .ometni__body { padding: 32px 24px 36px; }
  .ometni__branch { display: none; }

  .newsletter { padding: 8px 20px 48px; }
  .newsletter__inner { gap: 20px; padding: 28px 22px; }
  .newsletter__form { flex: 1 1 100%; flex-wrap: wrap; }
  .newsletter__input { flex: 1 1 100%; padding: 6px 0; }
  .newsletter__btn { flex: 1 1 100%; }

  .site-footer { padding: 44px 22px 0; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px 24px; padding-bottom: 32px; }
  .site-footer__brand { grid-column: 1 / 3; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 420px) {
  .pod-features__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
}


/* Podcast-Teme: restliche Themen aufklappbar (ein durchgehendes Raster,
   damit alle Kacheln lückenlos im Zweier-/Mehrspaltenblock fließen). */
.pdtopic--extra { display: none; }
.pdtopics.is-expanded .pdtopic--extra { display: block; }


/* Sanfter Abstand beim Anspringen der Themen-Sektion (#teme) */
#teme { scroll-margin-top: 24px; }
html { scroll-behavior: auto; }


/* =========================================================
   ============  O MENI (ueber-mich.html)  ================
   ========================================================= */

/* Aktiver Navigationspunkt */
.main-nav a.is-active {
  color: #2C2B26;
  text-decoration: underline;
  text-decoration-color: #5F6E4F;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
}

/* Gemeinsame Bausteine */
.omeni-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 500;
  color: #8A8172;
  margin: 0 0 16px;
}
.omeni-eyebrow--line { display: inline-flex; align-items: center; }
.omeni-eyebrow--line::after {
  content: "";
  width: 46px; height: 1px;
  background: #C9BD9C;
  margin-left: 16px;
}
.omeni-h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  color: #2C2B26;
  margin: 0 0 22px;
}
.omeni-p {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.75;
  color: #5B5A52;
  margin: 0 0 16px;
  max-width: 520px;
}
.omeni-signature {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: #6D7654;
  margin: 14px 0 0;
}

/* ---------- HERO ---------- */
.omeni-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #F5EFE5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}
.omeni-hero__media { position: relative; min-height: 480px; overflow: hidden; }
.omeni-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.omeni-hero__text {
  position: relative;
  align-self: center;
  padding: 64px clamp(32px, 5vw, 84px);
}
.omeni-hero__text > * { position: relative; z-index: 1; }
.omeni-hero__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.05;
  color: #2C2B26;
  margin: 0 0 12px;
}
.omeni-hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  color: #2C2B26;
  margin: 0 0 22px;
}
.omeni-hero__branch {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 150px; height: auto;
  opacity: 0.5;
  z-index: 0 !important;
  pointer-events: none;
}

/* ---------- MOJA PRIČA ---------- */
.omeni-story__inner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #F9F5EB;
}
.omeni-story__text { align-self: center; padding: 64px clamp(32px, 5vw, 84px); }
.omeni-story__media { min-height: 440px; overflow: hidden; }
.omeni-story__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.omeni-quote { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; }
.omeni-quote__branch { width: 40px; height: auto; flex-shrink: 0; margin-top: 2px; opacity: 0.85; }
.omeni-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #6D7654;
  margin: 0;
}

/* ---------- MOJ PROFESIONALNI PUT ---------- */
.omeni-path {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #FBF7F0;
  padding: 66px 24px;
}
.omeni-path__inner { max-width: 1180px; margin: 0 auto; }
.omeni-path__lead { max-width: 700px; margin-bottom: 46px; }
.omeni-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
  position: relative;
  margin-top: 20px;
}
.omeni-steps::before {
  content: "";
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 1px;
  background-image: linear-gradient(to right, #C9BD9C 45%, transparent 0);
  background-size: 9px 1px;
  background-repeat: repeat-x;
}
.omeni-step { position: relative; }
.omeni-step__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #6D7654;
  color: #FCFAF7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.omeni-step__icon svg { width: 30px; height: 30px; }
.omeni-step h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #2C2B26;
  margin: 0 0 8px;
}
.omeni-step p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: #5B5A52;
  margin: 0 auto;
  max-width: 232px;
}

/* ---------- VRIJEDNOSTI ---------- */
.omeni-values__inner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: stretch;
}
.omeni-values__main { padding: 66px clamp(32px, 5vw, 64px); background: #F9F5EB; }
.omeni-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 38px;
}
.omeni-value { text-align: center; }
.omeni-value__icon {
  display: inline-flex;
  width: 40px; height: 40px;
  color: #B89563;
  margin-bottom: 14px;
}
.omeni-value__icon svg { width: 100%; height: 100%; }
.omeni-value h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #2C2B26;
  margin: 0 0 10px;
}
.omeni-value p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: #5B5A52;
  margin: 0;
}
.omeni-values__quote {
  position: relative;
  overflow: hidden;
  background: #E6E3D4;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.omeni-values__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: #4A4A40;
  margin: 0 0 14px;
  position: relative; z-index: 1;
}
.omeni-values__quote-author {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #7A7167;
  margin: 0;
  position: relative; z-index: 1;
}
.omeni-values__branch {
  position: absolute;
  right: -14px; bottom: -10px;
  width: 130px; height: auto;
  opacity: 0.5;
  z-index: 0;
}

/* ---------- CTA ---------- */
.omeni-cta {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #F5EFE5;
  display: grid;
  grid-template-columns: 34% 1fr;
  align-items: stretch;
  overflow: hidden;
}
.omeni-cta__media { min-height: 260px; overflow: hidden; }
.omeni-cta__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.omeni-cta__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  padding: 56px clamp(32px, 4vw, 64px);
}
.omeni-cta__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.2;
  color: #2C2B26;
  margin: 0 0 14px;
}
.omeni-cta__text p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: #5B5A52;
  margin: 0 0 24px;
  max-width: 520px;
}
.omeni-cta__welcome { text-align: center; flex-shrink: 0; }
.omeni-cta__welcome .omeni-signature { font-size: 30px; margin: 0; }
.omeni-cta__divider { display: block; height: 12px; width: auto; margin: 10px auto 0; }

/* ---------- FOOTER ---------- */
.omeni-footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #F3EEE2;
  border-top: 1px solid #E2DBC9;
  padding: 26px 24px;
}
.omeni-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.omeni-footer__logo { visibility: visible; margin-left: 0; align-items: center; }
.omeni-footer__logo .logo__icon { height: 71.5px; margin-top: 0; }
.omeni-footer__logo .logo__text { width: auto; }
.omeni-footer__logo .logo__wordmark-text { font-size: 29px; letter-spacing: 6.565px; }
.omeni-footer__logo .logo__tagline-text { font-size: 8.96px; margin-top: 5px; letter-spacing: 1.147px; }
html[lang="de"] .omeni-footer__logo .logo__tagline-text { letter-spacing: 0.603px; }
.omeni-footer__tags {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #7A7167;
  margin: 0;
}
.omeni-footer__quote {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: #5B5A52;
}
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 90px; }
.legal__heading { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #2C2B26; margin: 0 0 32px; }
.legal h2 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #2C2B26; margin: 34px 0 10px; }
.legal p { font-family: 'Jost', sans-serif; font-size: .96rem; line-height: 1.65; color: #4A473F; margin: 0 0 4px; }
.legal a { color: #B89563; }
.omeni-footer__legal { display: flex; gap: 14px; font-family: var(--font-sans); font-size: 10.5px; color: #7A7167; }
.omeni-footer__legal a { color: #7A7167; text-decoration: none; }
.omeni-footer__legal a:hover { color: #2C2B26; }
.omeni-footer__quote strong {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #7A7167;
  margin-left: 4px;
}
.omeni-footer__branch { width: 34px; height: auto; opacity: 0.85; }

/* =========================================================
   O MENI — RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .omeni-hero { grid-template-columns: 1fr; }
  .omeni-hero__media { min-height: 320px; aspect-ratio: 3 / 2; }
  .omeni-hero__text { padding: 44px 28px; }
  .omeni-hero__branch { display: none; }

  .omeni-story__inner { grid-template-columns: 1fr; }
  .omeni-story__text { padding: 44px 28px; order: 1; }
  .omeni-story__media { order: 2; min-height: 0; aspect-ratio: 3 / 2; }

  .omeni-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .omeni-steps::before { display: none; }

  .omeni-values__inner { grid-template-columns: 1fr; }
  .omeni-values__quote { padding: 44px 32px; }

  .omeni-cta { grid-template-columns: 1fr; }
  .omeni-cta__media { min-height: 0; aspect-ratio: 16 / 9; }
  .omeni-cta__body { grid-template-columns: 1fr; gap: 28px; padding: 40px 28px; }
  .omeni-cta__welcome { text-align: left; }
  .omeni-cta__welcome .omeni-signature { margin: 0; }
  .omeni-cta__divider { margin: 10px 0 0; }
}

@media (max-width: 767px) {
  .omeni-hero__text { padding: 36px 22px; }
  .omeni-story__text { padding: 36px 22px; }
  .omeni-path { padding: 48px 20px; }
  .omeni-values__main { padding: 44px 22px; }
  .omeni-values__grid { grid-template-columns: 1fr; gap: 30px; max-width: 340px; }
  .omeni-value { text-align: left; display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; align-items: start; }
  .omeni-value__icon { margin: 2px 0 0; grid-row: 1 / 3; }
  .omeni-value h3 { grid-column: 2; margin: 0 0 6px; }
  .omeni-value p { grid-column: 2; }
  .omeni-footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .omeni-steps { grid-template-columns: 1fr; gap: 30px; max-width: 300px; margin-left: auto; margin-right: auto; }
}


/* =========================================================
   O MENI — Randabstände wie Landingpage (eingerückte Flächen)
   ========================================================= */
.omeni-hero,
.omeni-story,
.omeni-values,
.omeni-cta {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 24px;
  padding: 0 24px;
  background: transparent;
  display: block;
  grid-template-columns: none;
  overflow: visible;
}

.omeni-hero__inner,
.omeni-story__inner,
.omeni-values__inner,
.omeni-cta__inner {
  width: auto;
  max-width: 1392px;
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
  align-items: stretch;
}

.omeni-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F5EFE5;
}
.omeni-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F9F5EB;
}
.omeni-values__inner {
  display: grid;
  grid-template-columns: 1fr 350px;
}
.omeni-cta__inner {
  display: grid;
  grid-template-columns: 34% 1fr;
  background: #F5EFE5;
}

/* Schritte-Sektion ohne Vollbreiten-Band (wie Landingpage-Steps) */
.omeni-path { background: transparent; }

/* Responsive: Grids der inneren Flächen einspaltig */
@media (max-width: 900px) {
  .omeni-hero__inner { grid-template-columns: 1fr; }
  .omeni-story__inner { grid-template-columns: 1fr; }
  .omeni-values__inner { grid-template-columns: 1fr; }
  .omeni-cta__inner { grid-template-columns: 1fr; }
}


/* =========================================================
   O MENI — weicher/verschwommener Fotoübergang zur Textseite
   (exakt wie Zielbild: die zum Text zeigende Kante läuft weich
    in die jeweilige cremefarbene Fläche aus)
   ========================================================= */
.omeni-hero__media,
.omeni-story__media,
.omeni-cta__media { position: relative; }

/* Hero: Foto links -> rechte Kante weich (Fläche #F5EFE5) */
.omeni-hero__media::after {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to right,
    rgba(245, 239, 229, 0) 74%,
    rgba(245, 239, 229, 0.5) 89%,
    #F5EFE5 100%);
}
/* Moja priča: Foto rechts -> linke Kante weich (Fläche #F9F5EB) */
.omeni-story__media::after {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to left,
    rgba(249, 245, 235, 0) 74%,
    rgba(249, 245, 235, 0.5) 89%,
    #F9F5EB 100%);
}
/* CTA: Foto links -> rechte Kante weich (Fläche #F5EFE5) */
.omeni-cta__media::after {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to right,
    rgba(245, 239, 229, 0) 72%,
    rgba(245, 239, 229, 0.5) 88%,
    #F5EFE5 100%);
}

/* Gestapelt (Foto über/unter Text): kein seitlicher Übergang */
@media (max-width: 900px) {
  .omeni-hero__media::after,
  .omeni-story__media::after,
  .omeni-cta__media::after { display: none; }
}

/* =====================================================================
   ČLANCI (ressourcen.html)
   ===================================================================== */
.cl-eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: #B89563;
  margin: 0 0 18px;
}
.cl-eyebrow--sm { margin-bottom: 12px; }

.cl-link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: .02em;
  color: #2C2B26;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,149,99,.5);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.cl-link:hover { color: #B89563; border-color: #B89563; }
.cl-link--center { border: none; }

/* ---------- HERO + PITANJE ---------- */
.cl-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #F9F5EB;
}
.cl-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.cl-hero__text {
  padding: 72px clamp(28px, 4vw, 60px) 72px max(24px, calc((100vw - 1392px) / 2 + 24px));
  max-width: 760px;
}
.cl-hero__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.22;
  color: #2C2B26;
  margin: 0 0 20px;
}
.cl-hero__lead {
  font-family: 'Jost', sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #5B5A52;
  margin: 0 0 30px;
  max-width: 46ch;
}
.cl-hero__media { position: relative; min-height: 100%; }
.cl-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cl-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, #F9F5EB 0%, rgba(249,245,235,0.6) 4%, rgba(249,245,235,0) 13%);
}

/* Frage-Formular */
.cl-ask {
  border-top: 1px solid rgba(184,149,99,.28);
  padding-top: 28px;
}
.cl-ask__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #2C2B26;
  margin: 0 0 6px;
}
.cl-ask__sub {
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  line-height: 1.6;
  color: #7A7167;
  margin: 0 0 18px;
}
.cl-ask__form { font-family: 'Jost', sans-serif; }
.cl-ask__textarea,
.cl-field input,
.cl-newsletter__input {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: #2C2B26;
  background: #FFFDF8;
  border: 1px solid rgba(122,113,103,.32);
  border-radius: 4px;
  padding: 13px 15px;
  box-sizing: border-box;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.cl-ask__textarea { resize: vertical; min-height: 84px; line-height: 1.55; }
.cl-ask__textarea::placeholder,
.cl-field input::placeholder,
.cl-newsletter__input::placeholder { color: #A79D91; }
.cl-ask__textarea:focus,
.cl-field input:focus,
.cl-newsletter__input:focus {
  outline: none;
  border-color: #B89563;
  box-shadow: 0 0 0 3px rgba(184,149,99,.15);
}

.cl-ask__radios { display: flex; gap: 28px; margin: 16px 0 4px; }
.cl-radio, .cl-check { display: inline-flex; align-items: flex-start; gap: 9px; cursor: pointer; color: #5B5A52; font-size: .9rem; line-height: 1.45; }
.cl-radio input, .cl-check input { accent-color: #B89563; width: 16px; height: 16px; margin: 1px 0 0; flex: none; }

.cl-ask__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 4px;
}
.cl-field { display: flex; flex-direction: column; gap: 7px; }
.cl-field__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8A8172;
}

.cl-ask__consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cl-ask__consent .cl-check { max-width: 60%; }
.cl-ask__btn { white-space: nowrap; }
.cl-ask__note {
  font-size: .78rem;
  line-height: 1.55;
  color: #9A9082;
  margin: 16px 0 0;
}

/* ---------- TEME ---------- */
.cl-topics {
  max-width: 1392px;
  margin: 0 auto;
  padding: 72px 24px 8px;
  text-align: center;
}
.cl-topics__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #2C2B26;
  margin: 0 0 26px;
}
.cl-topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
}
.cl-topics__list a {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #4A473F;
  text-decoration: none;
  transition: color .2s ease;
}
.cl-topics__list a:hover { color: #B89563; }

/* ---------- ISTAKNUTI ČLANAK ---------- */
.cl-featured {
  max-width: 1392px;
  margin: 0 auto;
  padding: 48px 24px 8px;
}
.cl-featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.cl-featured__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.cl-featured__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.24;
  color: #2C2B26;
  margin: 0 0 18px;
}
.cl-featured__lead {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5B5A52;
  margin: 0 0 22px;
  max-width: 46ch;
}
.cl-featured__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  color: #8A8172;
  margin: 0 0 22px;
}
.cl-featured__meta svg { width: 17px; height: 17px; }

/* ---------- NOVI ČLANCI ---------- */
.cl-list {
  max-width: 1392px;
  margin: 0 auto;
  padding: 56px 24px 8px;
}
.cl-list__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #2C2B26;
  margin: 0 0 10px;
}
.cl-articles { list-style: none; margin: 0; padding: 0; }
.cl-article { border-top: 1px solid rgba(122,113,103,.2); scroll-margin-top: 32px; }
.cl-article:last-child { border-bottom: 1px solid rgba(122,113,103,.2); }
.cl-article__link {
  display: grid;
  grid-template-columns: 190px 1fr auto 40px;
  align-items: center;
  gap: 24px;
  padding: 24px 8px;
  text-decoration: none;
  transition: background .2s ease;
}
.cl-article__link:hover { background: #F5EFE5; }
.cl-article__cat {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8A8172;
}
.cl-article__name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: #2C2B26;
  margin-bottom: 5px;
  transition: color .2s ease;
}
.cl-article__link:hover .cl-article__name { color: #B89563; }
.cl-article__desc {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  line-height: 1.55;
  color: #7A7167;
}
.cl-article__time {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: #8A8172;
  white-space: nowrap;
}
.cl-article__arrow {
  font-size: 1.15rem;
  color: #B89563;
  text-align: right;
  transition: transform .2s ease;
}
.cl-article__link:hover .cl-article__arrow { transform: translateX(4px); }
.cl-list__more { text-align: center; padding: 34px 0 8px; }

/* ---------- MISAO ZA DANAS ---------- */
.cl-quote {
  width: 100vw;
  margin: 64px 0 0 calc(-50vw + 50%);
  background: #EDE7D9;
  padding: 60px 24px;
  text-align: center;
}
.cl-quote__eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  color: #8A8172;
  margin: 0 0 16px;
}
.cl-quote__text {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: #2C2B26;
  margin: 0 auto;
  max-width: 780px;
}
.cl-quote__divider { display: block; height: 26px; width: auto; margin: 22px auto 0; opacity: .7; }

/* ---------- NEWSLETTER ---------- */
.cl-newsletter {
  max-width: 1392px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}
.cl-newsletter__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #2C2B26;
  margin: 0 0 10px;
}
.cl-newsletter__sub {
  font-family: 'Jost', sans-serif;
  font-size: .98rem;
  color: #5B5A52;
  margin: 0 0 26px;
}
.cl-newsletter__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto;
}
.cl-newsletter__input { flex: 1; }
.cl-newsletter__form .btn { white-space: nowrap; }

/* ---------- CTA ---------- */
.cl-cta {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #F3EEE2;
}
.cl-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.cl-cta__body {
  padding: 72px clamp(28px, 4vw, 60px) 72px max(24px, calc((100vw - 1392px) / 2 + 24px));
  align-self: center;
  max-width: 760px;
}
.cl-cta__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  color: #2C2B26;
  margin: 0 0 16px;
}
.cl-cta__body p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5B5A52;
  margin: 0 0 26px;
  max-width: 44ch;
}
.cl-cta__media { position: relative; min-height: 100%; }
.cl-cta__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cl-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, #F3EEE2 0%, rgba(243,238,226,0.6) 4%, rgba(243,238,226,0) 13%);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .cl-hero__inner,
  .cl-cta__inner { grid-template-columns: 1fr; }
  .cl-hero__text { padding: 48px 24px 40px; max-width: none; order: 2; }
  .cl-hero__media { order: 1; min-height: 0; }
  .cl-hero__media img { position: static; height: 300px; }
  .cl-cta__body { padding: 48px 24px; order: 2; }
  .cl-cta__media { order: 1; min-height: 0; }
  .cl-cta__media img { position: static; height: 260px; }
  .cl-hero__media::after,
  .cl-cta__media::after { display: none; }

  .cl-featured__inner { grid-template-columns: 1fr; gap: 28px; }
  .cl-featured__media img { aspect-ratio: 16 / 10; }

  .cl-article__link {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "cat cat"
      "main time"
      "main arrow";
    gap: 6px 16px;
    align-items: start;
  }
  .cl-article__cat { grid-area: cat; margin-bottom: 4px; }
  .cl-article__main { grid-area: main; }
  .cl-article__time { grid-area: time; align-self: start; }
  .cl-article__arrow { grid-area: arrow; align-self: end; }
}

@media (max-width: 600px) {
  .cl-ask__fields { grid-template-columns: 1fr; }
  .cl-ask__consent { flex-direction: column; align-items: stretch; }
  .cl-ask__consent .cl-check { max-width: none; }
  .cl-ask__btn { width: 100%; justify-content: center; }
  .cl-newsletter__form { flex-direction: column; }
  .cl-newsletter__form .btn { width: 100%; }
  .cl-topics__list { gap: 14px 26px; }
  .cl-article__link { grid-template-columns: 1fr; grid-template-areas: "cat" "main" "time"; }
  .cl-article__arrow { display: none; }
}

/* =====================================================================
   LOGIN / ADMIN / OBJAVE (Supabase)
   ===================================================================== */
/* ---------- Login ---------- */
.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F5EB;
  padding: 40px 20px;
  box-sizing: border-box;
}
.auth__card {
  width: 100%;
  max-width: 430px;
  background: #FFFDF8;
  border: 1px solid rgba(184,149,99,.28);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(44,43,38,.10);
  padding: 40px 36px 32px;
  text-align: center;
}
.auth__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 26px;
}
.auth__brand .logo__icon { width: 79px; height: 79px; }
.auth__brand .logo__wordmark-text { font-family: 'Playfair Display', serif; font-size: 2rem; letter-spacing: 6.1px; color: #2C2B26; display: block; }
.auth__brand .logo__tagline-text { font-family: 'Jost', sans-serif; font-size: .627rem; letter-spacing: 0.938px; color: #8A8172; display: block; }
.auth__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.7rem; color: #2C2B26; margin: 0 0 6px; }
.auth__sub { font-family: 'Jost', sans-serif; font-size: .92rem; color: #7A7167; margin: 0 0 26px; }
.auth__form { text-align: left; display: flex; flex-direction: column; gap: 16px; }
.auth__btn { width: 100%; justify-content: center; margin-top: 4px; }
.auth__msg { font-family: 'Jost', sans-serif; font-size: .88rem; line-height: 1.5; margin: 0; padding: 10px 12px; border-radius: 5px; }
.auth__msg--error { background: #FBEAE6; color: #9A3B28; }
.auth__msg--warn { background: #FBF3E2; color: #8A6A2A; }
.auth__msg--ok { background: #EAF1E6; color: #4A6138; }
.auth__back { display: inline-block; margin-top: 22px; font-family: 'Jost', sans-serif; font-size: .86rem; color: #8A8172; text-decoration: none; }
.auth__back:hover { color: #B89563; }

/* select / file als Formularfelder */
.admin__select, .cl-field select {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: #2C2B26;
  background: #FFFDF8;
  border: 1px solid rgba(122,113,103,.32);
  border-radius: 4px;
  padding: 12px 14px;
  box-sizing: border-box;
}
.admin__file {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: #5B5A52;
  box-sizing: border-box;
}

/* ---------- Admin-Bar ---------- */
.admin-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: #FFFDF8;
  border-bottom: 1px solid rgba(184,149,99,.28);
}
.admin-bar__brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.admin-bar__brand .logo__icon { width: 30px; height: 30px; }
.admin-bar__brand .logo__wordmark-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #2C2B26; }
.admin-bar__right { display: flex; align-items: center; gap: 16px; }
.admin-bar__link { font-family: 'Jost', sans-serif; font-size: .88rem; color: #B89563; text-decoration: none; }
.admin-bar__link:hover { text-decoration: underline; }
.admin-bar__dropdown { position: relative; }
.admin-bar__dropdown-toggle { cursor: pointer; }
.admin-bar__dropdown-menu {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #FFFDF8; border: 1px solid rgba(184,149,99,.25); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: 6px; min-width: 140px; z-index: 20;
}
.admin-bar__dropdown:hover .admin-bar__dropdown-menu,
.admin-bar__dropdown:focus-within .admin-bar__dropdown-menu { display: block; }
.admin-bar__dropdown-menu a {
  display: block; font-family: 'Jost', sans-serif; font-size: .88rem; color: #2C2B26;
  text-decoration: none; padding: 8px 10px; border-radius: 5px;
}
.admin-bar__dropdown-menu a:hover { background: #F3EEE2; }
.admin-bar__user { font-family: 'Jost', sans-serif; font-size: .84rem; color: #8A8172; }
.admin-bar__logout { padding: 8px 16px; }

/* ---------- Admin ---------- */
.admin { background: #F9F5EB; min-height: calc(100vh - 61px); padding: 40px 24px 80px; }
.admin__inner { max-width: 900px; margin: 0 auto; display: grid; gap: 28px; }
.admin__panel {
  background: #FFFDF8;
  border: 1px solid rgba(184,149,99,.22);
  border-radius: 8px;
  padding: 30px 28px;
}
.admin__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.5rem; color: #2C2B26; margin: 0 0 6px; }
.admin__title--sm { font-size: 1.25rem; }
.admin__sub { font-family: 'Jost', sans-serif; font-size: .9rem; color: #7A7167; margin: 0 0 22px; }
.admin__sub a, .admin__panel a { color: #B89563; }
.admin__form { display: flex; flex-direction: column; gap: 16px; }
.admin__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin__actions { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.admin__progress { font-family: 'Jost', sans-serif; font-size: .88rem; color: #8A8172; }
.admin__msg { font-family: 'Jost', sans-serif; font-size: .9rem; margin: 0; padding: 10px 12px; border-radius: 5px; }
.admin__msg--error { background: #FBEAE6; color: #9A3B28; }
.admin__msg--ok { background: #EAF1E6; color: #4A6138; }

.admin__list { display: flex; flex-direction: column; }
.admin__item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 4px; border-top: 1px solid rgba(122,113,103,.18); }
.admin__item:first-child { border-top: none; }
.admin__item-info { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.admin__item-type { font-family: 'Jost', sans-serif; font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; background: #B89563; padding: 3px 8px; border-radius: 20px; }
.admin__item-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: #2C2B26; }
.admin__item-cat { font-family: 'Jost', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #B89563; }
.admin__item-date { font-family: 'Jost', sans-serif; font-size: .8rem; color: #9A9082; }
.admin__del { font-family: 'Jost', sans-serif; font-size: .82rem; color: #9A3B28; background: none; border: 1px solid rgba(154,59,40,.35); border-radius: 5px; padding: 6px 12px; cursor: pointer; transition: background .18s ease; }
.admin__del:hover { background: #FBEAE6; }
.admin__edit { font-family: 'Jost', sans-serif; font-size: .82rem; color: #5F6E4F; background: none; border: 1px solid rgba(95,110,79,.35); border-radius: 5px; padding: 6px 12px; cursor: pointer; transition: background .18s ease; margin-right: 8px; }
.admin__edit:hover { background: #EEF1E9; }
.admin__empty { font-family: 'Jost', sans-serif; color: #9A9082; margin: 0; }
.admin__gate { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #F9F5EB; font-family: 'Jost', sans-serif; color: #7A7167; text-align: center; padding: 24px; }
.admin__gate code { background: #EDE7D9; padding: 2px 6px; border-radius: 4px; }

/* ---------- Objave (öffentlicher Feed) ---------- */
.objave { max-width: 1100px; margin: 0 auto; padding: 64px 24px 80px; }
.objave__inner { text-align: center; }
.objave__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #2C2B26; margin: 0 0 12px; }
.objave__lead { font-family: 'Jost', sans-serif; font-size: 1.02rem; color: #5B5A52; margin: 0 0 44px; }
.objave__feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  text-align: left;
}
.objave__status { grid-column: 1 / -1; font-family: 'Jost', sans-serif; color: #9A9082; text-align: center; padding: 40px 0; line-height: 1.6; }
.objave__feed .cl-article,
.objave__feed .episode--audio { grid-column: 1 / -1; list-style: none; }
.post {
  background: #FFFDF8;
  border: 1px solid rgba(184,149,99,.2);
  border-radius: 8px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}
.post__cat { font-family: 'Jost', sans-serif; font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: #B89563; margin: 0 0 8px; }
.post__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.25rem; line-height: 1.3; color: #2C2B26; margin: 0 0 12px; }
.post__media-wrap { margin: 4px 0 14px; }
.post__media { width: 100%; display: block; border-radius: 5px; }
.post__media--audio { border-radius: 40px; }
video.post__media { background: #000; max-height: 420px; }
.post__linkbtn { display: inline-block; font-family: 'Jost', sans-serif; font-size: .92rem; color: #5F6E4F; word-break: break-all; text-decoration: none; border-bottom: 1px solid rgba(95,110,79,.4); padding-bottom: 2px; }
.post__linkbtn:hover { color: #B89563; border-color: #B89563; }
.post__body { font-family: 'Jost', sans-serif; font-size: .96rem; line-height: 1.65; color: #4A473F; margin: 0 0 14px; }
.post__meta { font-family: 'Jost', sans-serif; font-size: .78rem; color: #9A9082; margin: auto 0 0; }

@media (max-width: 600px) {
  .admin__row { grid-template-columns: 1fr; }
  .admin-bar { padding: 12px 16px; }
  .admin-bar__link { display: none; }
  .objave__feed { grid-template-columns: 1fr; }
  .auth__card { padding: 32px 22px 26px; }
}

/* =====================================================================
   DYNAMISCHE INHALTE: Podcast-Episoden, Članci-Karten, Leseseite
   ===================================================================== */
.admin__item-place { font-family: 'Jost', sans-serif; font-size: .68rem; color: #8A8172; }

/* ---------- Podcast: dynamische Episoden ---------- */
.dyn-eps { display: grid; gap: 20px; margin-bottom: 28px; }
.dyn-ep {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  background: #FFFDF8;
  border: 1px solid rgba(184,149,99,.2);
  border-radius: 8px;
  padding: 18px;
}
.dyn-ep__cover { border-radius: 6px; overflow: hidden; }
.dyn-ep__cover img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1 / 1; }
.dyn-ep__body { display: flex; flex-direction: column; }
.dyn-ep__cat { font-family: 'Jost', sans-serif; font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: #B89563; margin: 0 0 6px; }
.dyn-ep__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.25rem; line-height: 1.3; color: #2C2B26; margin: 0 0 8px; }
.dyn-ep__desc { font-family: 'Jost', sans-serif; font-size: .94rem; line-height: 1.6; color: #5B5A52; margin: 0 0 12px; }
.dyn-ep__audio { width: 100%; margin-top: auto; }
.dyn-ep__date { font-family: 'Jost', sans-serif; font-size: .78rem; color: #9A9082; margin: 10px 0 0; }

/* ---------- Članci: dynamische Karten ---------- */
.cl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.cl-card {
  display: flex;
  flex-direction: column;
  background: #FFFDF8;
  border: 1px solid rgba(184,149,99,.2);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cl-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(44,43,38,.10); }
.cl-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.cl-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.cl-card__cat { font-family: 'Jost', sans-serif; font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: #B89563; margin: 0 0 8px; }
.cl-card__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.2rem; line-height: 1.3; color: #2C2B26; margin: 0 0 10px; }
.cl-card__excerpt { font-family: 'Jost', sans-serif; font-size: .92rem; line-height: 1.6; color: #5B5A52; margin: 0 0 16px; }
.cl-card__more { font-family: 'Jost', sans-serif; font-size: .88rem; font-weight: 500; color: #B89563; margin-top: auto; }

/* ---------- Leseseite (clanak.html) ---------- */
.clanak {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 24px;
}
.clanak__cover { margin: 0 0 30px; border-radius: 8px; overflow: hidden; }
.clanak__cover img { width: 100%; height: 460px; object-fit: cover; display: block; }
.clanak__cat { font-family: 'Jost', sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; color: #B89563; margin: 0 0 14px; }
.clanak__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.2; color: #2C2B26; margin: 0 0 14px; }
.clanak__meta { font-family: 'Jost', sans-serif; font-size: .86rem; color: #9A9082; margin: 0 0 34px; padding-bottom: 24px; border-bottom: 1px solid rgba(184,149,99,.25); }
.clanak__body { font-family: 'Jost', sans-serif; font-size: 1.12rem; line-height: 1.85; color: #33322D; }
.clanak__body p { margin: 0 0 1.35em; }
.clanak__body p:first-child { font-size: 1.2rem; color: #2C2B26; }
.clanak__back-wrap { max-width: 760px; margin: 0 auto; padding: 8px 24px 72px; }

@media (max-width: 640px) {
  .dyn-ep { grid-template-columns: 1fr; }
  .dyn-ep__cover img { aspect-ratio: 16 / 9; }
  .cl-cards { grid-template-columns: 1fr; }
  .clanak__body { font-size: 1.05rem; }
}

/* Play/Pause-Umschaltung für hochgeladene Podcast-Episoden */
.episode__play { cursor: pointer; }
.episode__play .ic-pause { display: none; margin-left: 0; }
.episode--audio.is-playing .ic-pause { display: block; }
.episode--audio.is-playing .ic-play { display: none; }

/* =====================================================================
   SAVJETOVANJE / PONUDA (begleitung.html)
   ===================================================================== */
.svc-hero { background: #F6F0E6; padding: 52px 0 46px; }
.svc-hero__inner {
  max-width: 1392px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.svc-hero__title {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; color: #2C2B26; margin: 0;
}
.svc-hero__script { display: block; font-family: 'Dancing Script', cursive; font-weight: 600; color: #B89563; font-size: .5em; margin-top: 2px; }
.svc-hero__eyebrow { font-family: 'Jost', sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; color: #5F6E4F; margin: 16px 0 14px; }
.svc-hero__lead { font-family: 'Jost', sans-serif; font-size: 1.04rem; line-height: 1.7; color: #5B5A52; margin: 0; max-width: 44ch; }
.svc-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }
.svc-hero__banner {
  margin: 34px auto 0; width: calc(100% - 48px); max-width: 1344px; box-sizing: border-box;
  background: #5F6E4F; color: #F4F0E6; border-radius: 6px; padding: 20px 28px;
  display: flex; align-items: center; gap: 18px;
}
.svc-hero__banner p { margin: 0; font-family: 'Jost', sans-serif; font-size: 1rem; line-height: 1.55; }
.svc-hero__banner-heart { flex: none; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; }
.svc-hero__banner-heart svg { width: 22px; height: 22px; }

/* Ponuda */
.svc-offer { max-width: 1392px; margin: 0 auto; padding: 66px 24px 20px; }
.svc-offer__title { text-align: center; font-family: 'Jost', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .22em; font-size: 1.05rem; color: #2C2B26; margin: 0 0 36px; }
.svc-offer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.svc-card { background: #FBF7EF; border: 1px solid rgba(184,149,99,.22); border-radius: 8px; padding: 22px 20px 20px; }
.svc-card__icon { width: 52px; height: 52px; border-radius: 50%; background: #6D7654; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 0 15px; }
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card__title { font-family: 'Jost', sans-serif; font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .03em; line-height: 1.35; color: #2C2B26; margin: 0 0 12px; }
.svc-card__num { color: #B89563; }
.svc-card__list { list-style: none; margin: 0; padding: 0; }
.svc-card__list li { position: relative; padding-left: 15px; font-family: 'Jost', sans-serif; font-size: .86rem; line-height: 1.5; color: #5B5A52; margin-bottom: 6px; }
.svc-card__list li::before { content: ""; position: absolute; left: 2px; top: .58em; width: 5px; height: 5px; border-radius: 50%; background: #B89563; }

/* Misija / Vrijednosti / Za koga */
.svc-bottom { width: 100vw; margin-left: calc(-50vw + 50%); background: #EFE9DC; padding: 58px 0; }
.svc-bottom__inner { max-width: 1392px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 44px; align-items: start; }
.svc-panel__title { font-family: 'Jost', sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; color: #5F6E4F; margin: 0 0 16px; }
.svc-panel__text { font-family: 'Jost', sans-serif; font-size: 1rem; line-height: 1.7; color: #4A473F; margin: 0; }
.svc-panel__script { font-family: 'Dancing Script', cursive; font-weight: 600; font-size: 1.5rem; color: #B89563; margin: 14px 0 0; }
.svc-values { list-style: none; display: flex; gap: 12px; justify-content: space-between; margin: 0 0 18px; padding: 0; }
.svc-values li { flex: 1; text-align: center; font-family: 'Jost', sans-serif; font-size: .72rem; line-height: 1.3; color: #5B5A52; }
.svc-values__icon { width: 44px; height: 44px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; color: #B89563; }
.svc-values__icon svg { width: 26px; height: 26px; }
.svc-panel__foot { font-family: 'Jost', sans-serif; font-size: .85rem; color: #7A7167; text-align: center; border-top: 1px solid rgba(184,149,99,.32); padding-top: 14px; margin: 0; }

/* Zitat */
.svc-quote { max-width: 900px; margin: 0 auto; padding: 60px 24px 78px; text-align: center; }
.svc-quote__verse { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.4; color: #2C2B26; margin: 0 0 8px; }
.svc-quote__ref { font-family: 'Jost', sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: #8A8172; margin: 0 0 26px; }
.svc-quote__text { font-family: 'Jost', sans-serif; font-size: 1.05rem; line-height: 1.6; color: #5B5A52; margin: 0 0 4px; }
.svc-quote__script { font-family: 'Dancing Script', cursive; font-weight: 600; font-size: 1.7rem; color: #B89563; margin: 0 0 26px; }

@media (max-width: 900px) {
  .svc-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .svc-hero__media { order: -1; }
  .svc-bottom__inner { grid-template-columns: 1fr; gap: 34px; }
  .svc-bottom .svc-panel { text-align: center; }
  .svc-values { max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 520px) {
  .svc-offer__grid { grid-template-columns: 1fr 1fr; }
  .svc-values { flex-wrap: wrap; gap: 16px 8px; }
  .svc-values li { flex: 0 0 30%; }
}

/* Frageformular-Status (Članci) */
.cl-ask__status { font-family: 'Jost', sans-serif; font-size: .9rem; line-height: 1.5; margin: 12px 0 0; padding: 10px 12px; border-radius: 5px; }
.cl-ask__status--error { background: #FBEAE6; color: #9A3B28; }
.cl-ask__status--ok { background: #EAF1E6; color: #4A6138; }

/* Pitanja posjetitelja (admin) */
.admin__qlist { display: flex; flex-direction: column; gap: 14px; }
.admin__q { border: 1px solid rgba(122,113,103,.2); border-radius: 6px; padding: 16px 16px 14px; background: #FFFDF8; }
.admin__q.is-answered { opacity: .72; background: #F5F1E8; }
.admin__q-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 8px; flex-wrap: wrap; }
.admin__q-from { font-family: 'Jost', sans-serif; font-weight: 500; color: #2C2B26; font-size: .92rem; }
.admin__q-from a { color: #B89563; }
.admin__q-date { font-family: 'Jost', sans-serif; font-size: .8rem; color: #9A9082; white-space: nowrap; }
.admin__q-msg { font-family: 'Jost', sans-serif; font-size: .95rem; line-height: 1.6; color: #4A473F; margin: 0 0 12px; white-space: pre-wrap; }
.admin__q-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin__q-reply { font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 500; color: #fff; background: #5F6E4F; padding: 7px 14px; border-radius: 5px; text-decoration: none; }
.admin__q-reply:hover { background: #4d5a3f; }
.admin__q-noemail { font-family: 'Jost', sans-serif; font-size: .82rem; color: #9A9082; }
.admin__q-done { font-family: 'Jost', sans-serif; font-size: .82rem; color: #5F6E4F; background: none; border: 1px solid rgba(95,110,79,.4); border-radius: 5px; padding: 6px 12px; cursor: pointer; }
.admin__q-done:hover { background: #EEF1E8; }

/* Bestätigungs-Overlay (Frageformular) */
.shalom-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(44, 43, 38, .45);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  animation: shalomModalFade .2s ease;
}
@keyframes shalomModalFade { from { opacity: 0; } to { opacity: 1; } }
.shalom-modal__card {
  background: #FFFDF8; border-radius: 12px; max-width: 400px; width: 100%;
  padding: 34px 30px 28px; text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  animation: shalomModalPop .22s ease;
}
@keyframes shalomModalPop { from { transform: translateY(10px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.shalom-modal__icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: #EAF1E6; color: #5F6E4F;
}
.shalom-modal__card--error .shalom-modal__icon { background: #FBEAE6; color: #9A3B28; }
.shalom-modal__icon svg { width: 32px; height: 32px; }
.shalom-modal__title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.45rem; color: #2C2B26; margin: 0 0 8px; }
.shalom-modal__text { font-family: 'Jost', sans-serif; font-size: 1rem; line-height: 1.6; color: #5B5A52; margin: 0 0 22px; }
.shalom-modal__ok { min-width: 130px; justify-content: center; }

/* Sanfte Seitenübergänge (PJAX-Navigation) */
#site-content { transition: opacity .32s ease; }
#site-content.is-leaving { opacity: 0; }
@media (prefers-reduced-motion: reduce) { #site-content { transition: none; } }

/* Sprach-Umschalter HR / DE */
#lang-switch {
  position: fixed; top: 14px; right: 16px; z-index: 950;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(249,245,235,.9); border: 1px solid rgba(184,149,99,.4);
  border-radius: 20px; padding: 4px 11px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: 0 3px 10px rgba(44,43,38,.10);
}
#lang-switch button {
  background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: .74rem; letter-spacing: .06em;
  color: #8A8172; padding: 1px 3px; line-height: 1;
}
#lang-switch button.is-active { color: #B89563; font-weight: 600; }
#lang-switch span { color: #CBBFA9; font-size: .74rem; }
/* Mobil/Tablet: nach unten links, damit der Burger oben rechts frei bleibt */
@media (max-width: 900px) {
  #lang-switch { top: auto; right: auto; bottom: 16px; left: 14px; }
}

/* =====================================================================
   Deutsch-Modus: längere Texte brauchen mehr Höhe.
   Feste Höhen / Seitenverhältnisse NUR bei lang="de" lockern,
   damit nichts abgeschnitten wird. Kroatisch bleibt pixelgenau.
   ===================================================================== */
html[lang="de"] .faith__inner { aspect-ratio: auto; }
html[lang="de"] .faith__quote { aspect-ratio: auto; height: auto; }
/* Kontakt-Kachel + Zitat-Kachel: gleiche (Inhalts-)Höhe, bündig, ohne Abschneiden */
.impulse__item:nth-child(4) { height: auto; align-self: stretch; }
.impulse__quote { height: auto; align-self: stretch; position: relative; }
.impulse__quote-img { position: absolute; inset: 0; }

/* Fotos in den Angebots-Karten (Savjetovanje) */
.svc-card { display: flex; flex-direction: column; overflow: hidden; }
.svc-card__list { margin-bottom: 14px; }
.svc-card__photo { margin: auto -20px -20px -20px; }
.svc-card__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }

/* Angebots-Karten: Icon & Titel zentriert, weicher Foto-Übergang oben */
.svc-card__icon { margin-left: auto; margin-right: auto; }
.svc-card__title { text-align: center; }
/* Foto läuft oben selbst weich aus (keine sichtbare Kante) */
.svc-card__photo img {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 30px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 30px);
}

/* Weicher Foto-Übergang oben auch auf den Resursi-Fotos (wie bei den Angebots-Karten) */
.cl-featured__media img,
.cl-card__media img,
.clanak__cover img,
img.post__media {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px);
}

/* =====================================================================
   Foto-Verläufe direkt INS Foto (Maske) statt farbigem Overlay.
   Jeweils an der Seite zum Text hin -> keine sichtbare Kante.
   ===================================================================== */
.pod-hero__media::before,
.cl-hero__media::after,
.cl-cta__media::after { display: none !important; }

/* Weicher, mehrstufiger Ease-Verlauf: kein sichtbarer Endpunkt.
   Bild rechts, Text links -> linke Kante ins Bild auslaufen */
.pod-hero__media img,
.cl-hero__media img,
.cl-cta__media img {
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.06) 2%,
    rgba(0,0,0,0.20) 4.5%,
    rgba(0,0,0,0.45) 7%,
    rgba(0,0,0,0.70) 9.5%,
    rgba(0,0,0,0.90) 12%,
    #000 15%);
  mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.06) 2%,
    rgba(0,0,0,0.20) 4.5%,
    rgba(0,0,0,0.45) 7%,
    rgba(0,0,0,0.70) 9.5%,
    rgba(0,0,0,0.90) 12%,
    #000 15%);
}
/* Paarbild: Bild links, Text rechts -> rechte Kante ins Bild auslaufen (überschreibt Oben-Verlauf) */
.cl-featured__media img {
  -webkit-mask-image: linear-gradient(to left,
    transparent 0%,
    rgba(0,0,0,0.06) 2%,
    rgba(0,0,0,0.20) 4.5%,
    rgba(0,0,0,0.45) 7%,
    rgba(0,0,0,0.70) 9.5%,
    rgba(0,0,0,0.90) 12%,
    #000 15%);
  mask-image: linear-gradient(to left,
    transparent 0%,
    rgba(0,0,0,0.06) 2%,
    rgba(0,0,0,0.20) 4.5%,
    rgba(0,0,0,0.45) 7%,
    rgba(0,0,0,0.70) 9.5%,
    rgba(0,0,0,0.90) 12%,
    #000 15%);
}

/* Členci oberstes Foto (Notizbuch): nur die Kante ausfransen; zum Ende
   hin sanft auslaufen (Ease-out) -> verblasst ohne sichtbare Kante,
   ohne tief ins Motiv zu gehen. */
.cl-hero__media img {
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.5) 4%,
    rgba(0,0,0,0.85) 7.5%,
    #000 12%);
  mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.5) 4%,
    rgba(0,0,0,0.85) 7.5%,
    #000 12%);
}

/* Paarfoto: gleicher Kanten-Ausklang, gespiegelt (rechte Kante zum Text) */
.cl-featured__media img {
  -webkit-mask-image: linear-gradient(to left,
    transparent 0%,
    rgba(0,0,0,0.5) 4%,
    rgba(0,0,0,0.85) 7.5%,
    #000 12%);
  mask-image: linear-gradient(to left,
    transparent 0%,
    rgba(0,0,0,0.5) 4%,
    rgba(0,0,0,0.85) 7.5%,
    #000 12%);
}

/* Auf schmalen Screens (gestapelt) keine seitliche Maske */
@media (max-width: 900px) {
  .pod-hero__media img,
  .cl-hero__media img,
  .cl-cta__media img,
  .cl-featured__media img { -webkit-mask-image: none; mask-image: none; }
}

/* =====================================================================
   Savjetovanje: "Tijek i cijene" CTA-Block unter den 15 Angeboten
   ===================================================================== */
.svc-pricing { background: var(--color-bg-primary); padding: 8px 0 68px; }
.svc-pricing__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; }
.svc-pricing__divider { display: block; height: 14px; width: auto; margin: 0 auto 30px; }
.svc-pricing__text {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7; color: var(--color-text-secondary);
  margin: 0 0 30px;
}
.svc-pricing__btn {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 13px 28px;
  border: 1.5px solid var(--color-button);
  border-radius: 4px;
  color: var(--color-button);
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.svc-pricing__btn-icon svg { width: 20px; height: 20px; display: block; }
.svc-pricing__btn-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: .18em; text-transform: uppercase;
}
.svc-pricing__btn-arrow { font-size: 16px; line-height: 1; }
.svc-pricing__btn:hover,
.svc-pricing__btn:focus-visible {
  background: var(--color-button);
  border-color: var(--color-button);
  color: var(--color-button-text);
}
.svc-pricing__script {
  font-family: 'Dancing Script', cursive; font-weight: 600;
  font-size: 1.5rem; color: var(--color-accent-gold);
  margin: 26px 0 0;
}
@media (max-width: 600px) {
  .svc-pricing { padding: 4px 0 52px; }
  .svc-pricing__btn { gap: 12px; padding: 16px 24px; width: 100%; justify-content: center; }
  .svc-pricing__btn-label { letter-spacing: .16em; }
}

/* =====================================================================
   Seite "Tijek i cijene" (tijek-i-cijene.html)
   ===================================================================== */
.tc-intro { background: var(--color-bg-primary); padding: 64px 0 0; text-align: center; }
.tc-intro__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.tc-intro__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 56px); letter-spacing: .04em;
  color: var(--color-button); margin: 0 0 10px;
}
.tc-intro__script {
  font-family: 'Dancing Script', cursive; font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px); color: var(--color-accent-gold);
  margin: 0 0 22px;
}
.tc-intro__lead {
  font-family: var(--font-sans); font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7; color: var(--color-text-secondary); margin: 0 0 26px;
}
.tc-intro__divider { display: block; height: 14px; width: auto; margin: 0 auto; }

/* --- Kako izgleda suradnja --- */
.tc-steps { background: var(--color-bg-primary); padding: 44px 0 60px; }
.tc-steps__inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.tc-steps__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: .04em;
  color: var(--color-text-primary); margin: 0 0 40px;
}
.tc-steps__row {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: flex-start; justify-content: center; gap: 6px;
}
.tc-step { flex: 1 1 0; max-width: 170px; display: flex; flex-direction: column; align-items: center; }
.tc-step__icon {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-button); margin-bottom: 16px;
}
.tc-step__icon svg { width: 34px; height: 34px; }
.tc-step__label {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.5;
  color: var(--color-text-secondary); margin: 0;
}
.tc-step__num { color: var(--color-text-primary); font-weight: 500; }
.tc-step__arrow {
  flex: 0 0 auto; color: var(--color-accent-gold);
  display: flex; align-items: center; height: 66px;
}
.tc-step__arrow svg { width: 26px; height: 26px; }

/* --- Pregled troškova --- */
.tc-prices { background: var(--color-bg-primary); padding: 8px 0 40px; }
.tc-prices__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.tc-prices__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: .04em;
  color: var(--color-text-primary); text-align: center; margin: 0 0 6px;
}
.tc-prices__script {
  font-family: 'Dancing Script', cursive; font-weight: 600;
  font-size: 1.3rem; color: var(--color-accent-gold);
  text-align: center; margin: 0 0 30px;
}
.tc-price {
  display: flex; align-items: center; gap: 22px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px; padding: 22px 26px; margin-bottom: 16px;
}
.tc-price__icon {
  flex: 0 0 auto;
  width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-button); background: var(--color-bg-primary);
}
.tc-price__icon svg { width: 30px; height: 30px; }
.tc-price__body { flex: 1 1 auto; min-width: 0; }
.tc-price__name {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px); letter-spacing: .03em;
  text-transform: uppercase; color: var(--color-text-primary); margin: 0 0 6px;
}
.tc-price__cost {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(19px, 1.8vw, 24px); color: var(--color-accent-gold); margin: 0 0 6px;
}
.tc-price__desc {
  font-family: var(--font-sans); font-size: 14px;
  color: var(--color-text-secondary); margin: 0;
}
.tc-price__btn {
  flex: 0 0 auto;
  font-family: var(--font-sans); font-weight: 500;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-button); text-decoration: none;
  border: 1.5px solid var(--color-button); border-radius: 4px;
  padding: 12px 20px; white-space: nowrap;
  transition: background-color .25s ease, color .25s ease;
}
.tc-price__btn:hover, .tc-price__btn:focus-visible {
  background: var(--color-button); color: var(--color-button-text);
}
.tc-prices__free {
  font-family: 'Dancing Script', cursive; font-weight: 600;
  font-size: 1.3rem; color: var(--color-accent-gold);
  text-align: center; margin: 26px 0 12px;
}
.tc-prices__note {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.7;
  color: var(--color-text-secondary); text-align: center; margin: 0;
}
.tc-prices__payment-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  max-width: 560px; margin: 22px auto 0; padding: 14px 20px;
  background: #F3EEE2; border-radius: 8px;
  font-family: var(--font-sans); font-size: 13.5px; line-height: 1.6;
  color: var(--color-text-primary);
}
.tc-prices__payment-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-accent-sage); }

/* --- Dostupnost (Hilfe-Panel) --- */
.tc-help-wrap { background: var(--color-bg-primary); padding: 34px 0 20px; }
.tc-help {
  max-width: 860px; margin: 0 auto; padding: 26px 30px;
  display: flex; align-items: center; gap: 24px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border); border-radius: 8px;
}
.tc-help__icon { flex: 0 0 auto; color: var(--color-button); }
.tc-help__icon svg { width: 46px; height: 46px; }
.tc-help__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(17px, 1.5vw, 21px); letter-spacing: .03em;
  text-transform: uppercase; color: var(--color-text-primary); margin: 0 0 8px;
}
.tc-help__text {
  font-family: var(--font-sans); font-size: 14.5px; line-height: 1.7;
  color: var(--color-text-secondary); margin: 0;
}

/* --- Česta pitanja (FAQ) --- */
.tc-faq { background: var(--color-bg-primary); padding: 40px 0 20px; }
.tc-faq__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.tc-faq__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: .04em;
  color: var(--color-text-primary); text-align: center; margin: 0 0 26px;
}
.tc-faq__item {
  border-bottom: 1px solid var(--color-border);
}
.tc-faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px;
  font-family: var(--font-sans); font-size: 15px; color: var(--color-text-primary);
}
.tc-faq__item summary::-webkit-details-marker { display: none; }
.tc-faq__chevron {
  flex: 0 0 auto; width: 12px; height: 12px;
  border-right: 1.5px solid var(--color-accent-gold);
  border-bottom: 1.5px solid var(--color-accent-gold);
  transform: rotate(45deg); transition: transform .25s ease;
  margin-top: -4px;
}
.tc-faq__item[open] .tc-faq__chevron { transform: rotate(-135deg); margin-top: 2px; }
.tc-faq__answer { padding: 0 4px 20px; }
.tc-faq__answer p {
  font-family: var(--font-sans); font-size: 14.5px; line-height: 1.7;
  color: var(--color-text-secondary); margin: 0;
}

/* --- Zaključni CTA --- */
.tc-cta { background: var(--color-bg-primary); padding: 30px 0 72px; }
.tc-cta__inner { max-width: 640px; margin: 0 auto; padding: 30px 24px 0; text-align: center; border-top: 1px solid var(--color-border); }
.tc-cta__heart { color: var(--color-accent-gold); display: inline-flex; }
.tc-cta__heart svg { width: 24px; height: 24px; }
.tc-cta__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px); letter-spacing: .03em;
  text-transform: uppercase; color: var(--color-text-primary); margin: 12px 0 12px;
}
.tc-cta__text {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.7;
  color: var(--color-text-secondary); margin: 0 0 24px;
}
.tc-cta__actions { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.tc-cta__back {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-text-secondary); text-decoration: none;
  border-bottom: 1px solid var(--color-border); padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.tc-cta__back:hover { color: var(--color-button); border-color: var(--color-button); }

/* --- Responsive --- */
@media (max-width: 760px) {
  .tc-steps__row { flex-wrap: wrap; gap: 18px 4px; }
  .tc-step { flex: 1 1 40%; max-width: none; }
  .tc-step__arrow { display: none; }
  .tc-price { flex-wrap: wrap; gap: 14px; padding: 20px; }
  .tc-price__body { flex: 1 1 60%; }
  .tc-price__btn { width: 100%; text-align: center; }
  .tc-help { flex-direction: column; text-align: center; gap: 14px; }
}

/* =====================================================================
   Admin: Statistika posjeta (Klicks + Verweildauer, Balkendiagramme)
   ===================================================================== */
.admin__stat-tabs { display: flex; gap: 8px; margin: 4px 0 22px; flex-wrap: wrap; }
.admin__stat-tab {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: .04em;
  padding: 8px 16px; border: 1px solid var(--color-border); border-radius: 20px;
  background: var(--color-card); color: var(--color-text-secondary); cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.admin__stat-tab:hover { border-color: var(--color-accent-gold); }
.admin__stat-tab.is-active { background: var(--color-button); border-color: var(--color-button); color: var(--color-button-text); }

.admin__stat-summary { display: flex; gap: 30px; flex-wrap: wrap; margin: 0 0 28px; }
.admin__stat-num { font-family: var(--font-serif); font-weight: 500; font-size: 25px; color: var(--color-text-primary); }
.admin__stat-lbl { font-family: var(--font-sans); font-size: 12.5px; color: var(--color-text-secondary); margin-top: 2px; }

.admin__stat-block { margin-bottom: 32px; }
.admin__stat-heading { font-family: var(--font-serif); font-weight: 500; font-size: 16px; color: var(--color-text-primary); margin: 0 0 16px; }

.admin__chart {
  display: flex; align-items: flex-end; gap: 12px;
  height: 170px; overflow-x: auto; padding: 4px 2px 4px;
}
.admin__bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 6px; min-width: 34px; flex: 1 0 auto; height: 100%; }
.admin__bar-col { width: 100%; max-width: 26px; background: var(--color-button); border-radius: 4px 4px 0 0; min-height: 3px; transition: height .35s ease; }
.admin__bar-val { font-family: var(--font-sans); font-size: 11px; color: var(--color-text-secondary); }
.admin__bar-lbl { font-family: var(--font-sans); font-size: 11px; color: var(--color-text-secondary); white-space: nowrap; }

.admin__chart--h { display: flex; flex-direction: column; gap: 12px; height: auto; overflow: visible; }
.admin__hbar { display: grid; grid-template-columns: 150px 1fr 34px; align-items: center; gap: 12px; }
.admin__hbar-lbl { font-family: var(--font-sans); font-size: 12.5px; color: var(--color-text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin__hbar-track { background: var(--color-bg-secondary); border-radius: 5px; height: 14px; overflow: hidden; }
.admin__hbar-fill { height: 100%; background: var(--color-accent-gold); border-radius: 5px; transition: width .35s ease; }
.admin__hbar-val { font-family: var(--font-sans); font-size: 12px; color: var(--color-text-secondary); text-align: right; }

@media (max-width: 640px) {
  .admin__hbar { grid-template-columns: 100px 1fr 30px; gap: 8px; }
  .admin__stat-summary { gap: 20px; }
}

/* Statistika: zwei Diagramme nebeneinander (Herkunft + Gerät) */
.admin__stat-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 720px) {
  .admin__stat-grid2 { grid-template-columns: 1fr; gap: 0; }
}

/* Admin: Reiter-Navigation (Sadržaj / Statistika posjeta) */
.admin-tabs {
  max-width: 900px; margin: 0 auto; padding: 22px 24px 0;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.admin-tabs__btn {
  font-family: var(--font-sans); font-size: 14px; letter-spacing: .03em;
  padding: 10px 20px; border: 1px solid var(--color-border); border-radius: 20px;
  background: var(--color-card); color: var(--color-text-secondary); cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.admin-tabs__btn:hover { border-color: var(--color-accent-gold); }
.admin-tabs__btn.is-active { background: var(--color-button); border-color: var(--color-button); color: var(--color-button-text); }

/* Statistika: Reset-Zeile (Zähler auf Null, ohne Datenverlust) */
.admin__stat-toprow {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin: 4px 0 22px;
}
.admin__stat-toprow .admin__stat-tabs { margin: 0; }
.admin__stat-reset { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.admin__stat-reset-info { font-family: var(--font-sans); font-size: 12.5px; color: var(--color-text-secondary); }
.admin__stat-reset-btn {
  font-family: var(--font-sans); font-size: 12.5px; letter-spacing: .03em;
  padding: 9px 16px; border: 1px solid var(--color-border); border-radius: 20px;
  background: var(--color-card); color: var(--color-text-secondary); cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.admin__stat-reset-btn:hover { border-color: #C0554A; color: #C0554A; }
.admin__stat-reset-undo {
  font-family: var(--font-sans); font-size: 12.5px; color: var(--color-accent-gold);
  background: none; border: none; padding: 0; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}

/* =====================================================================
   PODSTRANICE SAVJETOVANJE (subsvc-*) – zajednička predložak-klasa
   za Individualni razgovori / Za parove / Za djecu / Za obitelj / Online
   ===================================================================== */
.subsvc-hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.subsvc-hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 52%; }
.subsvc-hero__media img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 20px; -webkit-mask-image: linear-gradient(to right, transparent 0, transparent 70px, #000 140px); mask-image: linear-gradient(to right, transparent 0, transparent 70px, #000 140px); }
.subsvc-hero__inner { position: relative; z-index: 1; width: 100%; box-sizing: border-box; padding-left: max(24px, calc((100vw - var(--container-max)) / 2 + 24px)); padding-right: 24px; }
.subsvc-hero__text { max-width: 46%; padding: 60px 0; }
.subsvc-hero__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.2rem, 3.6vw, 3.2rem); line-height: 1.15; color: var(--color-text-primary); margin: 12px 0 20px; }
.subsvc-hero__lead { font-family: var(--font-sans); font-size: 1.02rem; line-height: 1.6; color: #5B5A52; margin: 0 0 28px; max-width: 46ch; }
.subsvc-hero__note { font-family: var(--font-sans); font-size: .86rem; color: #8A8172; margin: 16px 0 0; }

.subsvc-why { padding: 90px 24px; text-align: center; }
.subsvc-why__inner { max-width: var(--container-max); margin: 0 auto; }
.subsvc-why__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--color-text-primary); margin: 0 0 12px; }
.subsvc-why__lead { font-family: var(--font-sans); color: #5B5A52; margin: 0 0 44px; }
.subsvc-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.subsvc-why__card { border: 1px solid rgba(184,149,99,.25); border-radius: 10px; padding: 34px 20px; }
.subsvc-why__icon { display: inline-flex; width: 68px; height: 68px; color: var(--color-accent-sage); margin-bottom: 16px; }
.subsvc-why__icon svg, .subsvc-why__icon img { width: 100%; height: 100%; object-fit: contain; }
.subsvc-why__card p { font-family: var(--font-serif); font-size: 1.05rem; color: var(--color-text-primary); margin: 0; }

.subsvc-steps { background: #EDE7D9; padding: 80px 24px; text-align: center; }
.subsvc-steps__inner { max-width: var(--container-max); margin: 0 auto; }
.subsvc-steps__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--color-text-primary); margin: 0 0 50px; }
.subsvc-steps__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: left; }
.subsvc-step { display: flex; gap: 18px; align-items: flex-start; padding-left: 40px; border-left: 1px solid rgba(122,113,103,.25); }
.subsvc-step:first-child { padding-left: 0; border-left: none; }
.subsvc-step__num { font-family: var(--font-serif); font-weight: 400; font-size: 3.6rem; color: var(--color-accent-sage); line-height: 1; }
.subsvc-step__label { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--color-text-primary); margin: 8px 0 8px; }
.subsvc-step__desc { font-family: var(--font-sans); font-size: .92rem; line-height: 1.55; color: #5B5A52; margin: 0; }

.subsvc-quote { padding: 56px 24px; text-align: center; }
.subsvc-quote__inner { display: inline-flex; align-items: center; gap: 20px; text-align: left; }
.subsvc-quote__branch { width: 34px; flex-shrink: 0; }
.subsvc-quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: #5B5A52; margin: 0; line-height: 1.5; }

.subsvc-cta { position: relative; padding: 120px 24px; text-align: center; background-size: cover; background-position: center; }
.subsvc-cta__inner { position: relative; max-width: 700px; margin: 0 auto; }
.subsvc-cta h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--color-text-primary); margin: 0 0 16px; }
.subsvc-cta p { font-family: var(--font-sans); color: #4A473F; margin: 0 0 28px; line-height: 1.6; }

@media (max-width: 900px) {
  .subsvc-hero { min-height: 0; display: block; }
  .subsvc-hero__media { position: static; width: 100%; height: 320px; }
  .subsvc-hero__text { max-width: 100%; padding: 40px 0; }
  .subsvc-why__grid { grid-template-columns: repeat(2, 1fr); }
  .subsvc-steps__row { grid-template-columns: 1fr; gap: 28px; }
}

/* =====================================================================
   BOOKING (Zatražite termin, kontakt.html)
   ===================================================================== */
.booking { max-width: 640px; margin: 0 auto; padding: 56px 24px 90px; }
.booking__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--color-text-primary); margin: 0 0 10px; text-align: center; }
.booking__sub { font-family: 'Jost', sans-serif; font-size: .96rem; color: #5B5A52; text-align: center; margin: 0 0 32px; }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking__form .cl-field { margin-bottom: 16px; }
.booking__btn { width: 100%; margin-top: 4px; }
.booking__status { font-family: 'Jost', sans-serif; font-size: .9rem; line-height: 1.5; margin: 12px 0 0; padding: 10px 12px; border-radius: 5px; }
.booking__status--error { background: #FBEAE6; color: #9A3B28; }
.booking__status--ok { background: #EAF1E6; color: #4A6138; }
@media (max-width: 600px) {
  .booking__row { grid-template-columns: 1fr; }
}

/* =====================================================================
   ADMIN: KALENDAR
   ===================================================================== */
.cal__head { display: flex; align-items: center; gap: 16px; margin: 0 0 20px; }
.cal__nav-btn { font-family: 'Jost', sans-serif; font-size: 1rem; background: none; border: 1px solid rgba(184,149,99,.3); border-radius: 6px; width: 34px; height: 34px; cursor: pointer; color: #2C2B26; }
.cal__nav-btn:hover { background: #F3EEE2; }
.cal__month-label { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #2C2B26; margin: 0; min-width: 160px; }
.cal__add-btn { margin-left: auto; }
.cal__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 6px; }
.cal__weekdays span { text-align: center; font-family: 'Jost', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #8A8172; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__day { min-height: 92px; border: 1px solid rgba(184,149,99,.2); border-radius: 8px; padding: 6px; cursor: pointer; background: #fff; transition: background .15s ease; }
.cal__day:hover { background: #FBF7F0; }
.cal__day.is-other-month { opacity: .4; }
.cal__day.is-today { border-color: #5F6E4F; border-width: 2px; }
.cal__day-num { display: block; font-family: 'Jost', sans-serif; font-size: .8rem; color: #2C2B26; margin-bottom: 4px; }
.cal__pill { display: block; font-family: 'Jost', sans-serif; font-size: .66rem; padding: 2px 5px; border-radius: 4px; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal__pill--pending { background: #FBEFDD; color: #8A6A2A; }
.cal__pill--confirmed { background: #EAF1E6; color: #4A6138; }
.cal__pill--rejected { background: #F1EEEA; color: #9A9082; text-decoration: line-through; }
.cal__pill--proposed { background: #E6EEF5; color: #3A5A78; }
.cal__more { display: block; font-family: 'Jost', sans-serif; font-size: .64rem; color: #8A8172; margin-top: 2px; }

.cal-modal { position: fixed; inset: 0; background: rgba(44,43,38,.45); display: flex; align-items: center; justify-content: center; z-index: 300; padding: 20px; }
.cal-modal[hidden] { display: none; }
.cal-modal__card { position: relative; background: #FFFDF8; border-radius: 10px; padding: 30px; max-width: 480px; width: 100%; max-height: 82vh; overflow-y: auto; }
.cal-modal__close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.4rem; line-height: 1; cursor: pointer; color: #8A8172; }
.cal-modal__title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #2C2B26; margin: 0 0 16px; }
.cal-modal__new { border-top: 1px solid rgba(184,149,99,.2); margin-top: 18px; padding-top: 18px; }
.cal-modal__new h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: #2C2B26; margin: 0 0 12px; }
.cal-modal__new .cl-field { margin-bottom: 10px; }

.cal-item { border-bottom: 1px solid rgba(184,149,99,.2); padding: 14px 0; }
.cal-item:first-child { padding-top: 0; }
.cal-item__head { font-family: 'Jost', sans-serif; font-size: .92rem; color: #2C2B26; margin: 6px 0 4px; }
.cal-item__msg { font-family: 'Jost', sans-serif; font-size: .86rem; color: #5B5A52; margin: 0 0 8px; }
.cal-item__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-item__actions .btn { padding: 6px 12px; font-size: .8rem; }
.cal-item__propose { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.cal-item__propose input { font-family: 'Jost', sans-serif; font-size: .85rem; padding: 6px 8px; border: 1px solid rgba(184,149,99,.3); border-radius: 5px; }
