:root {
  --forest: #0f3429;
  --forest-deep: #071f19;
  --leaf: #1f5a43;
  --gold: #bd9141;
  --gold-light: #e3c98e;
  --cream: #fbf7ef;
  --sand: #eee5d6;
  --paper: #fffdf8;
  --ink: #18231e;
  --muted: #657069;
  --coral: #e2493f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--cream);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(14, 52, 41, 0.1);
  background: rgba(255, 253, 248, 0.96);
}

.header-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  flex: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(189, 145, 65, 0.4);
  box-shadow: 0 7px 20px rgba(25, 53, 42, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.38);
}

.brand-words {
  display: grid;
  line-height: 1;
}

.brand-words strong {
  color: var(--forest);
  letter-spacing: 0.03em;
  font-size: 19px;
  font-weight: 850;
}

.brand-words small {
  margin-top: 6px;
  color: #8b7448;
  letter-spacing: 0.15em;
  font-size: 7.5px;
  font-weight: 800;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #435149;
  font-size: 13px;
  font-weight: 650;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta,
.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  font-weight: 750;
}

.nav-cta {
  padding: 0 19px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(10, 45, 35, 0.16);
}

.nav-cta span,
.primary-button span {
  font-size: 19px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-button i {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 1px;
  background: var(--forest);
}

.hero {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
  padding: 70px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 480px;
  height: 480px;
  left: -330px;
  top: 90px;
  border: 1px solid rgba(189, 145, 65, 0.22);
  border-radius: 50%;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8a713d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.podcast-copy h2,
.studio-content h1,
.studio-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(55px, 5.45vw, 82px);
  line-height: 0.98;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: #536159;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.primary-button {
  padding: 0 24px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 15px 30px rgba(226, 73, 63, 0.22);
}

.text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
}

.text-button.dark {
  color: var(--forest);
}

.trust-row {
  margin-top: 34px;
  display: flex;
  gap: 23px;
  color: #59665e;
  font-size: 11px;
  font-weight: 650;
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(189, 145, 65, 0.5);
  color: var(--gold);
  font-size: 12px;
}

.hero-visual {
  min-height: 520px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 30px 30px;
  overflow: hidden;
  border-radius: 46% 46% 14px 14px;
  box-shadow: 0 30px 60px rgba(13, 43, 34, 0.16);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
}

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

.image-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 12px 15px;
  display: grid;
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.93);
  color: var(--forest-deep);
  box-shadow: 0 10px 30px rgba(7, 31, 25, 0.12);
}

.image-badge strong {
  font-size: 11px;
}

.image-badge span {
  margin-top: 3px;
  color: #6c766f;
  font-size: 9px;
}

.quote-card {
  position: absolute;
  z-index: 4;
  width: 245px;
  left: -22px;
  bottom: 0;
  padding: 19px 20px 16px 50px;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 15px 45px rgba(7, 31, 25, 0.25);
}

.quote-card > span {
  position: absolute;
  left: 17px;
  top: 9px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 46px;
}

.quote-card p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.3;
}

.quote-card small {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,0.65);
  font-size: 8px;
}

.path-section,
.world-section,
.knowledge-section {
  padding: 94px max(24px, calc((100% - 1200px) / 2));
}

.path-section {
  background: var(--forest-deep);
  color: #fff;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.podcast-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  max-width: 620px;
  color: #727c76;
  font-size: 15px;
  line-height: 1.7;
}

.path-section .section-heading > p:last-child {
  color: rgba(255,255,255,0.62);
}

.path-grid {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.path-grid article {
  position: relative;
  min-height: 245px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

.path-grid .featured-path {
  background: #123b2e;
  border-color: rgba(227, 201, 142, 0.5);
  transform: translateY(-10px);
}

.path-grid b {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(227, 201, 142, 0.3);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 500;
}

.path-symbol {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(227, 201, 142, 0.13);
  color: var(--gold-light);
  font-size: 23px;
}

.path-grid h3 {
  margin: 28px 0 10px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.path-grid p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.65;
}

.secondary-button {
  margin-top: 35px;
  padding: 0 23px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
}

.world-section {
  background: var(--paper);
}

.heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.heading-row .eyebrow {
  justify-content: flex-start;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 16px;
}

.world-grid article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--forest);
}

.world-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.world-grid article:hover img {
  transform: scale(1.035);
}

.world-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 25, 18, 0.86) 0%, rgba(4,25,18,0.08) 65%);
}

.world-grid article > div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff;
}

.world-grid p {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-grid h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 500;
}

.world-grid a {
  margin-top: 13px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 750;
}

.podcast-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #193f32;
  color: #fff;
}

.podcast-art {
  min-height: 500px;
  padding: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(227,201,142,0.35), transparent 23%),
    radial-gradient(circle at center, #204d3d, #0b2a21 72%);
}

.sound-lines {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sound-lines i {
  width: 4px;
  border-radius: 3px;
  background: var(--gold-light);
}

.sound-lines i:nth-child(1), .sound-lines i:nth-child(7) { height: 22px; }
.sound-lines i:nth-child(2), .sound-lines i:nth-child(6) { height: 45px; }
.sound-lines i:nth-child(3), .sound-lines i:nth-child(5) { height: 70px; }
.sound-lines i:nth-child(4) { height: 88px; background: #fff; }

.podcast-art > p {
  margin: 24px 0 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.podcast-art h3 {
  margin: 10px 0 7px;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 500;
}

.podcast-art > span {
  color: rgba(255,255,255,0.55);
  font-size: 10px;
}

.podcast-copy {
  padding: 80px max(50px, calc((100vw - 1200px) / 2)) 75px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow.light {
  color: var(--gold-light);
}

.podcast-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.6vw, 52px);
}

.podcast-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
}

.audio-player {
  max-width: 630px;
  margin-top: 28px;
  padding: 14px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
}

.audio-player button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
}

.audio-player strong {
  font-size: 11px;
}

.audio-player small {
  color: rgba(255,255,255,0.5);
  font-size: 9px;
}

.audio-line {
  position: relative;
  height: 3px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255,255,255,0.18);
}

.audio-line span {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--gold-light);
}

.audio-line.playing span {
  width: 42%;
}

.podcast-copy > a {
  width: fit-content;
  min-height: 44px;
  margin-top: 17px;
  display: flex;
  align-items: center;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 750;
}

.knowledge-section {
  background: var(--cream);
}

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

.knowledge-grid article {
  overflow: hidden;
  border: 1px solid #e9e0d3;
  border-radius: 13px;
  background: #fff;
}

.knowledge-grid img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.knowledge-grid article > div {
  padding: 22px;
}

.knowledge-grid small {
  color: #9d7c3f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.knowledge-grid h3 {
  min-height: 58px;
  margin: 9px 0 12px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.knowledge-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-size: 11px;
  font-weight: 750;
}

footer {
  padding: 55px max(24px, calc((100% - 1200px) / 2)) 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: #071e18;
  color: #fff;
}

footer .brand-words strong {
  color: #fff;
}

footer .brand-lockup + p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.6;
}

.footer-cta {
  text-align: right;
}

.footer-cta p {
  margin: 0 0 9px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

.footer-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 22px;
}

footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.35);
  font-size: 9px;
}

.agent-dock {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.agent-trigger {
  min-height: 49px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 25px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 13px 35px rgba(7,31,25,0.28);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.agent-trigger span {
  color: var(--gold-light);
}

.agent-panel {
  width: 340px;
  padding: 18px;
  border: 1px solid rgba(189,145,65,0.35);
  border-radius: 15px;
  background: #fffdfa;
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(7,31,25,0.24);
}

.agent-panel-head,
.agent-panel-head > div {
  display: flex;
  align-items: center;
}

.agent-panel-head {
  justify-content: space-between;
}

.agent-panel-head > div {
  gap: 10px;
}

.agent-panel-head > div > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
}

.agent-panel-head p,
.editor-person p,
.studio-user p {
  margin: 0;
  display: grid;
}

.agent-panel-head strong {
  font-size: 12px;
}

.agent-panel-head small {
  margin-top: 2px;
  color: #5f7a6d;
  font-size: 9px;
}

.agent-panel-head > button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #7f8a84;
  cursor: pointer;
  font-size: 22px;
}

.agent-prompt {
  margin: 17px 0 9px;
  font-size: 11px;
  font-weight: 750;
}

.agent-panel > button:not(.agent-trigger) {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid #e6dfd3;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 11px;
}

.agent-input {
  min-height: 48px;
  margin-top: 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: #f1ece3;
  color: #879088;
  font-size: 10px;
}

.agent-input span {
  color: var(--forest);
  font-size: 18px;
}

/* Inline editing preview */
.editor-bar {
  position: relative;
  z-index: 80;
  min-height: 58px;
  padding: 0 max(24px, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #09251d;
  color: #fff;
}

.editor-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.editor-person > span,
.studio-user > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.editor-person strong {
  font-size: 11px;
}

.editor-person small {
  margin-top: 2px;
  color: rgba(255,255,255,0.55);
  font-size: 8px;
}

.editor-actions {
  display: flex;
  gap: 8px;
}

.editor-actions button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.editor-actions .editor-save {
  border-color: var(--gold);
  background: var(--gold);
}

.hero.is-editing {
  outline: 2px solid var(--gold);
  outline-offset: -9px;
  background: rgba(227,201,142,0.08);
}

.hero.is-editing::after {
  content: "Startbereich";
  position: absolute;
  z-index: 8;
  top: 0;
  left: 18px;
  padding: 7px 11px;
  border-radius: 0 0 6px 6px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.edit-tools {
  position: absolute;
  z-index: 12;
  right: 20px;
  top: 16px;
  display: flex;
  padding: 5px;
  gap: 2px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(7,31,25,0.17);
}

.edit-tools button {
  min-height: 38px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  color: #44534b;
  font-size: 9px;
  font-weight: 700;
}

.edit-tools button:last-child {
  background: #edf5f0;
  color: var(--forest);
}

/* Mobile device preview */
.mobile-stage {
  min-height: 100vh;
  padding: 36px 20px 80px;
  display: grid;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(189,145,65,0.24), transparent 30%),
    #071e18;
}

.mobile-caption {
  width: 390px;
  margin: 0 auto 16px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 11px;
}

.mobile-caption span {
  color: rgba(255,255,255,0.5);
}

.phone-shell {
  position: relative;
  width: 414px;
  padding: 15px 12px 20px;
  overflow: hidden;
  border: 7px solid #111714;
  border-radius: 42px;
  background: #111714;
  box-shadow: 0 45px 100px rgba(0,0,0,0.5);
}

.phone-speaker {
  position: absolute;
  z-index: 90;
  width: 70px;
  height: 18px;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  border-radius: 0 0 15px 15px;
  background: #111714;
}

.compact {
  width: 390px;
  border-radius: 25px;
}

.compact .header-inner {
  width: calc(100% - 30px);
  min-height: 68px;
  gap: 10px;
}

.compact .brand-mark {
  width: 38px;
  height: 38px;
}

.compact .brand-words strong {
  font-size: 16px;
}

.compact .nav-links,
.compact .nav-cta {
  display: none;
}

.compact .menu-button {
  margin-left: auto;
  display: block;
}

.compact .hero {
  width: calc(100% - 30px);
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 46px 0 43px;
}

.compact .hero::before {
  width: 240px;
  height: 240px;
  left: -150px;
  top: 30px;
}

.compact .eyebrow {
  margin-bottom: 13px;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.compact .hero h1 {
  font-size: 45px;
  line-height: 1.01;
}

.compact .hero-intro {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.compact .hero-actions {
  margin-top: 25px;
  display: grid;
  gap: 6px;
}

.compact .primary-button {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
}

.compact .text-button {
  justify-content: center;
}

.compact .trust-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 9px;
}

.compact .trust-row > div:last-child {
  grid-column: 1 / -1;
}

.compact .hero-visual {
  min-height: 350px;
}

.compact .hero-image-wrap {
  inset: 0 0 0 0;
  border-radius: 48% 48% 12px 12px;
}

.compact .quote-card {
  width: 220px;
  left: -5px;
  bottom: -18px;
}

.compact .image-badge {
  display: none;
}

.compact .path-section,
.compact .world-section,
.compact .knowledge-section {
  padding: 58px 15px;
}

.compact .section-heading {
  margin-bottom: 28px;
}

.compact .section-heading h2,
.compact .podcast-copy h2 {
  font-size: 34px;
}

.compact .section-heading > p:last-child {
  font-size: 12px;
}

.compact .path-grid,
.compact .world-grid,
.compact .knowledge-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.compact .path-grid article {
  min-height: 190px;
}

.compact .path-grid .featured-path {
  transform: none;
}

.compact .heading-row {
  display: block;
}

.compact .heading-row .text-button {
  margin-top: 10px;
  justify-content: flex-start;
}

.compact .world-grid article {
  min-height: 300px;
}

.compact .podcast-section {
  grid-template-columns: 1fr;
}

.compact .podcast-art {
  min-height: 360px;
  padding: 45px 25px;
}

.compact .podcast-copy {
  padding: 54px 20px;
}

.compact .audio-player {
  grid-template-columns: 44px 1fr;
}

.compact .audio-player small {
  display: none;
}

.compact .knowledge-grid img {
  height: 190px;
}

.compact footer {
  padding: 45px 18px 22px;
  grid-template-columns: 1fr;
}

.compact .footer-cta {
  text-align: left;
}

/* Backend / work studio preview */
.studio-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px 1fr;
  background: #f3eee5;
}

.studio-sidebar {
  min-height: 100vh;
  padding: 25px 19px;
  display: flex;
  flex-direction: column;
  background: #09261e;
  color: #fff;
}

.studio-sidebar .brand-words strong {
  color: #fff;
}

.studio-sidebar nav {
  margin-top: 45px;
  display: grid;
  gap: 5px;
}

.studio-sidebar nav a {
  min-height: 46px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  border-radius: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  font-weight: 650;
}

.studio-sidebar nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.studio-sidebar nav b {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  color: #fff;
  font-size: 8px;
}

.studio-sidebar > a:last-child {
  min-height: 44px;
  margin-top: auto;
  padding: 0 11px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
}

.studio-content {
  padding: 38px clamp(28px, 4vw, 62px) 60px;
  overflow: hidden;
}

.studio-content > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.studio-content > header p {
  margin: 0 0 5px;
  color: #708078;
  font-size: 11px;
}

.studio-content h1 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(34px, 3.2vw, 48px);
}

.studio-user {
  padding: 8px 13px 8px 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #ded5c7;
  border-radius: 25px;
  background: rgba(255,255,255,0.7);
}

.studio-user strong {
  font-size: 10px;
}

.studio-user small {
  margin-top: 2px;
  color: #8a938e;
  font-size: 8px;
}

.quick-actions {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-actions article {
  min-height: 88px;
  padding: 16px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  border: 1px solid #ded5c7;
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
}

.quick-actions article.quick-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.quick-actions article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efe7d8;
  color: var(--forest);
  font-size: 19px;
}

.quick-actions .quick-primary > span {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}

.quick-actions p {
  margin: 0;
  display: grid;
}

.quick-actions strong {
  font-size: 11px;
}

.quick-actions small {
  margin-top: 4px;
  color: #7c8982;
  font-size: 8px;
}

.quick-actions .quick-primary small {
  color: rgba(255,255,255,0.53);
}

.studio-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 15px;
}

.inbox-card,
.agent-status-card,
.podcast-upload-card {
  padding: 23px;
  border: 1px solid #ded5c7;
  border-radius: 13px;
  background: rgba(255,255,255,0.83);
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.card-head .eyebrow,
.podcast-upload-card .eyebrow {
  margin-bottom: 9px;
  font-size: 8px;
}

.studio-content h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 26px;
}

.card-head > a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--forest);
  font-size: 9px;
  font-weight: 750;
}

.lead-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ece5da;
}

.lead-row:last-child {
  border-bottom: 0;
}

.lead-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.lead-avatar.coral { background: #d9655c; }
.lead-avatar.gold { background: #b68b3d; }
.lead-avatar.green { background: #3c7d61; }

.lead-row p {
  margin: 0;
  display: grid;
}

.lead-row strong {
  font-size: 10px;
}

.lead-row small,
.lead-row time {
  margin-top: 3px;
  color: #7d8882;
  font-size: 8px;
}

.lead-row button {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid #d7cec0;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  font-size: 8px;
  font-weight: 750;
}

.status-pill {
  padding: 7px 9px;
  border-radius: 12px;
  background: #e3f2e9;
  color: #28704f;
  font-size: 8px;
  font-weight: 750;
}

.status-copy {
  margin: 14px 0 0;
  color: #78847e;
  font-size: 9px;
  line-height: 1.55;
}

.agent-status-card ul {
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.agent-status-card li {
  min-height: 51px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #ece5da;
}

.agent-status-card li > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e3f2e9;
  color: #28704f;
  font-size: 9px;
}

.agent-status-card li:last-child > span {
  background: #fff0d9;
  color: #a76d12;
}

.agent-status-card li p {
  margin: 0;
  display: grid;
}

.agent-status-card li strong,
.agent-status-card li b {
  font-size: 8px;
}

.agent-status-card li small {
  margin-top: 2px;
  color: #87918c;
  font-size: 7.5px;
}

.agent-status-card li b {
  color: #28704f;
}

.agent-status-card li b.warning {
  color: #a76d12;
}

.agent-simple-button {
  width: 100%;
  min-height: 42px;
  margin-top: 15px;
  border: 0;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.podcast-upload-card {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr auto;
  align-items: center;
  gap: 24px;
}

.podcast-upload-card ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.podcast-upload-card li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 1px solid #e5ddd0;
}

.podcast-upload-card li:last-child { border-right: 0; }

.podcast-upload-card li b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efe7d8;
  color: #927135;
  font-size: 8px;
}

.podcast-upload-card li span {
  display: grid;
}

.podcast-upload-card li strong {
  font-size: 8px;
}

.podcast-upload-card li small {
  margin-top: 3px;
  color: #818b86;
  font-size: 7px;
}

.podcast-upload-card > button {
  min-height: 43px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr 0.86fr; gap: 30px; }
  .hero h1 { font-size: 54px; }
  .trust-row { display: grid; gap: 7px; }
  .podcast-upload-card { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { width: calc(100% - 30px); min-height: 70px; }
  .nav-cta { display: none; }
  .menu-button { margin-left: auto; display: block; }
  .hero { width: calc(100% - 30px); grid-template-columns: 1fr; padding: 50px 0; }
  .hero-visual { min-height: 390px; }
  .path-grid, .world-grid, .knowledge-grid { grid-template-columns: 1fr; }
  .path-grid .featured-path { transform: none; }
  .heading-row { display: block; }
  .podcast-section { grid-template-columns: 1fr; }
  .podcast-copy { padding: 55px 24px; }
  footer { grid-template-columns: 1fr; }
  .footer-cta { text-align: left; }
  .editor-bar { align-items: stretch; padding: 10px 15px; flex-direction: column; }
  .editor-actions button { flex: 1; }
  .edit-tools { max-width: calc(100% - 35px); overflow-x: auto; }
  .agent-panel { width: min(340px, calc(100vw - 30px)); }
  .studio-page { grid-template-columns: 70px 1fr; }
  .studio-sidebar { padding: 20px 10px; }
  .studio-sidebar .brand-words, .studio-sidebar nav a span, .studio-sidebar > a:last-child { display: none; }
  .studio-sidebar nav a { grid-template-columns: 1fr; text-align: center; }
  .quick-actions { grid-template-columns: 1fr; }
}

/* Production pages */
.skip-link{position:fixed;z-index:10000;left:12px;top:-80px;padding:12px 16px;border-radius:0 0 8px 8px;background:#fff;color:var(--forest);font-weight:800}.skip-link:focus{top:0}
.independence-bar{padding:7px 0;background:#09261e;color:rgba(255,255,255,.78);font-size:10px;line-height:1.35}.independence-bar .header-inner{min-height:0;gap:8px}.status-dot{width:7px;height:7px;flex:none;border-radius:50%;background:#d8b15e;box-shadow:0 0 0 4px rgba(216,177,94,.12)}
.site-wrap{width:min(1200px,calc(100% - 48px));margin-inline:auto}.content-section{padding:88px 0}.soft-section{background:#f1e9dc}.narrow{max-width:780px}.centered-button{margin:32px auto 0}
.section-heading p.eyebrow,.subhero p.eyebrow,.content-section p.eyebrow,.podcast-page-hero p.eyebrow{justify-content:flex-start}.section-heading.heading-row{align-items:end}
.subhero{padding:84px 0;background:linear-gradient(135deg,#f7f0e3 0%,#fffdf8 72%);border-bottom:1px solid rgba(15,52,41,.09)}.subhero.compact{padding:70px 0}.subhero h1,.product-detail h1,.podcast-page-hero h1,.thank-you h1{max-width:900px;margin:0;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:clamp(46px,6vw,78px);font-weight:500;line-height:1.02;letter-spacing:-.045em}.subhero>div>p:last-child,.subhero-grid>div>p{max-width:720px;margin:24px 0 0;color:#5b6861;font-size:17px;line-height:1.72}.subhero-grid{display:grid;grid-template-columns:1.15fr .85fr;align-items:center;gap:60px}
.subhero-card{padding:34px;border-radius:20px;background:var(--forest);color:#fff;box-shadow:0 30px 70px rgba(9,38,30,.18)}.subhero-card>span{color:var(--gold-light);font-size:10px;font-weight:850;letter-spacing:.14em;text-transform:uppercase}.subhero-card>strong{margin:14px 0 22px;display:block;font-family:Georgia,serif;font-size:31px;font-weight:500;line-height:1.2}.subhero-card ul{margin:0;padding:0;display:grid;gap:12px;list-style:none}.subhero-card li{padding-left:25px;position:relative;color:rgba(255,255,255,.72);font-size:13px}.subhero-card li::before{content:"✓";position:absolute;left:0;color:var(--gold-light)}
.final-cta{padding:62px 0;background:#143d31;color:#fff}.final-cta-grid{display:grid;grid-template-columns:1fr auto;align-items:center;gap:40px}.final-cta h2{margin:6px 0 12px;font-family:Georgia,serif;font-size:clamp(34px,4vw,52px);font-weight:500;letter-spacing:-.035em}.final-cta p{max-width:700px;margin:0;color:rgba(255,255,255,.68);line-height:1.65}.cta-actions{display:flex;align-items:center;gap:16px}.light-button{background:#fff!important;color:var(--forest)!important;box-shadow:none}.text-button.light,.eyebrow.light{color:var(--gold-light)}
.site-footer{padding:66px 0 26px!important;display:block!important;background:#071e18;color:#fff}.footer-grid{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:48px}.site-footer h2{margin:6px 0 18px;color:#fff;font-size:12px;letter-spacing:.1em;text-transform:uppercase}.site-footer .footer-grid>div:not(:first-child) a{min-height:38px;display:flex;flex-direction:column;justify-content:center;color:rgba(255,255,255,.72);font-size:12px}.site-footer .footer-grid>div:not(:first-child) a:hover{color:#fff}.site-footer a small{margin-top:3px;color:rgba(255,255,255,.38);font-size:8px}.site-footer .footer-brand>p{max-width:420px;margin:18px 0 0;color:rgba(255,255,255,.56);font-size:12px;line-height:1.65}.site-footer .footer-notice{font-size:9px!important;color:rgba(255,255,255,.35)!important}.site-footer .brand-words strong{color:#fff}.site-footer .brand-words small{color:var(--gold-light)}.footer-bottom{margin-top:44px;padding-top:20px;display:flex;justify-content:space-between;gap:30px;border-top:1px solid rgba(255,255,255,.09);color:rgba(255,255,255,.38);font-size:9px}
.mobile-action{display:none}
.domain-section{padding:92px 0;background:#fff}.domain-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.domain-grid article{min-height:300px;padding:28px;display:flex;flex-direction:column;border:1px solid #ded5c7;border-radius:16px;background:#fffdf8}.domain-grid article.primary{background:var(--forest);color:#fff;border-color:var(--forest)}.domain-grid article>span{color:var(--gold);font-size:11px;font-weight:850}.domain-grid article>strong{margin-top:22px;color:#9b7a3d;font-size:11px;letter-spacing:.08em}.domain-grid article.primary>strong{color:var(--gold-light)}.domain-grid h3{margin:14px 0 10px;font-family:Georgia,serif;font-size:26px;font-weight:500}.domain-grid p{margin:0;color:#647168;font-size:12px;line-height:1.65}.domain-grid .primary p{color:rgba(255,255,255,.6)}.domain-grid a{margin-top:auto;padding-top:22px;color:var(--forest);font-size:11px;font-weight:800}.domain-grid .primary a{color:var(--gold-light)}
.faq-section{padding:92px 0;background:#f4ede2}.faq-preview{display:grid;grid-template-columns:.75fr 1.25fr;gap:70px;align-items:start}.faq-preview h2,.content-section h2,.podcast-promise h2{margin:0;color:var(--forest-deep);font-family:Georgia,serif;font-size:clamp(34px,4vw,55px);font-weight:500;letter-spacing:-.04em}.faq-preview>div:first-child>p:not(.eyebrow){color:#637068;line-height:1.7}.accordion-list{display:grid}.accordion-list details{border-bottom:1px solid #d8cfc1}.accordion-list summary{min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:20px;cursor:pointer;color:var(--forest-deep);font-size:15px;font-weight:750;list-style:none}.accordion-list summary::-webkit-details-marker{display:none}.accordion-list summary b{color:var(--gold);font-size:22px}.accordion-list details[open] summary b{transform:rotate(45deg)}.accordion-list details>p{margin:-4px 0 22px;color:#5f6d65;font-size:13px;line-height:1.75}.faq-page{display:grid;grid-template-columns:1fr 330px;gap:70px;align-items:start}.faq-page aside{position:sticky;top:25px;padding:30px;border-radius:16px;background:var(--forest);color:#fff}.faq-page aside h2{color:#fff;font-size:31px}.faq-page aside p{color:rgba(255,255,255,.65);line-height:1.65}
.world-grid-full{width:auto}.world-grid-full article{min-height:420px}.world-grid-full article>div>span{display:block;max-width:320px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.55}
.fact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.fact-grid article{padding:28px;border:1px solid #ded5c7;border-radius:14px;background:#fff}.fact-grid article>span{color:var(--gold);font-size:12px;font-weight:850}.fact-grid h3{margin:25px 0 10px;color:var(--forest-deep);font-family:Georgia,serif;font-size:27px}.fact-grid p{margin:0;color:#627068;font-size:12px;line-height:1.65}.split-feature{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}.large-copy{font-size:18px;line-height:1.75;color:#536159}.check-list{margin:28px 0 0;padding:0;display:grid;gap:14px;list-style:none}.check-list li{position:relative;padding-left:31px;color:#536159;line-height:1.55}.check-list li::before{content:"✓";position:absolute;left:0;width:21px;height:21px;display:grid;place-items:center;border-radius:50%;background:#dcece3;color:#236a4c;font-size:10px;font-weight:900}.timeline-card{padding:18px 32px;border-radius:20px;background:var(--forest);color:#fff}.timeline-card>div{padding:24px 0;border-bottom:1px solid rgba(255,255,255,.11)}.timeline-card>div:last-child{border:0}.timeline-card span{color:var(--gold-light);font-size:10px;font-weight:850;letter-spacing:.1em}.timeline-card p{margin:8px 0 0;color:rgba(255,255,255,.68)}
.quiz-section{padding:92px 0;background:#fff}.quiz-wrap{display:grid;grid-template-columns:.7fr 1.3fr;gap:70px}.quiz-intro h2{margin:0;color:var(--forest-deep);font-family:Georgia,serif;font-size:52px;font-weight:500}.quiz-intro>p:not(.eyebrow){color:#5b6961;line-height:1.7}.privacy-chip{margin-top:24px;color:#28704f;font-size:11px;font-weight:750}.fit-quiz{padding:34px;border:1px solid #ded5c7;border-radius:18px;background:#fbf7ef;box-shadow:0 22px 60px rgba(15,52,41,.08)}.quiz-progress{display:grid;gap:9px;color:#6c7972;font-size:10px;font-weight:700}.quiz-progress>b{height:5px;overflow:hidden;border-radius:4px;background:#ded6c9}.quiz-progress i{height:100%;display:block;background:var(--coral);transition:width .2s}.fit-quiz fieldset{margin:28px 0 0;padding:0;border:0}.fit-quiz legend{margin-bottom:20px;color:var(--forest-deep);font-family:Georgia,serif;font-size:28px}.fit-quiz label{min-height:54px;margin-top:9px;padding:0 16px;display:flex;align-items:center;gap:12px;border:1px solid #dcd3c6;border-radius:9px;background:#fff;cursor:pointer}.fit-quiz label:has(input:checked){border-color:var(--forest);box-shadow:inset 0 0 0 1px var(--forest)}.fit-quiz input{accent-color:var(--forest)}.quiz-actions{margin-top:25px;display:flex;justify-content:space-between;gap:12px}.quiz-result h3{font-family:Georgia,serif;font-size:34px;font-weight:500}.notice-panel{padding:26px;border-left:4px solid var(--gold);border-radius:0 12px 12px 0;background:#f1e9dc}.notice-panel strong{color:var(--forest-deep)}.notice-panel p{margin:8px 0 0;color:#5c6962;line-height:1.65}
.catalog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.catalog-card{overflow:hidden;border:1px solid #ded5c7;border-radius:14px;background:#fff}.catalog-card img{width:100%;height:230px;object-fit:cover}.catalog-card>div{padding:21px}.catalog-card span{color:#95743b;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.09em}.catalog-card h3{margin:9px 0;color:var(--forest-deep);font-family:Georgia,serif;font-size:24px;font-weight:500}.catalog-card p{color:#657169;font-size:11px;line-height:1.6}.catalog-card a,.card-link{min-height:40px;display:inline-flex;align-items:center;color:var(--forest);font-size:10px;font-weight:800}
.product-search-hero{padding:60px 0}.product-search-hero img{width:100%;max-height:390px;object-fit:cover;border-radius:50% 50% 14px 14px}.filter-section{position:relative;z-index:4;padding:24px 0;background:#fff;border-block:1px solid #e2d9cc}.product-filter{display:grid;grid-template-columns:1.3fr .75fr .9fr auto auto;align-items:end;gap:11px}.product-filter label{display:grid;gap:7px;color:#536159;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.product-filter input,.product-filter select{width:100%;height:48px;padding:0 13px;border:1px solid #d4ccbf;border-radius:8px;background:#fff;color:#1b2a23;font:500 13px/1 system-ui}.filter-reset{min-height:48px;display:flex;align-items:center;color:#6b756f;font-size:10px;font-weight:700}.result-count{margin:18px 0 0;color:#66726b;font-size:11px}.result-count strong{color:var(--forest);font-size:16px}.product-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.search-product-card{overflow:hidden;border:1px solid #ded5c7;border-radius:15px;background:#fff;box-shadow:0 12px 30px rgba(15,52,41,.04)}.search-product-image{position:relative;height:245px;display:block;overflow:hidden}.search-product-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s}.search-product-card:hover img{transform:scale(1.025)}.search-product-image>span{position:absolute;left:15px;bottom:14px;padding:6px 9px;border-radius:12px;background:#fff;color:var(--forest);font-size:9px;font-weight:800}.search-product-card>div{padding:22px}.search-product-card small{color:#92743c;font-size:9px;font-weight:800;text-transform:uppercase}.search-product-card h2{margin:8px 0 10px;font-size:25px;line-height:1.2}.search-product-card p{min-height:55px;margin:0;color:#68736d;font-size:11px;line-height:1.65}.search-product-card dl{margin:18px 0 0;padding-top:14px;display:grid;grid-template-columns:repeat(3,1fr);gap:8px;border-top:1px solid #eee6db}.search-product-card dt{color:#87908b;font-size:8px}.search-product-card dd{margin:4px 0 0;color:#27362f;font-size:10px;font-weight:750}.pagination{margin-top:38px;display:flex;flex-wrap:wrap;justify-content:center;gap:6px}.pagination a{width:38px;height:38px;display:grid;place-items:center;border:1px solid #d8cfc2;border-radius:8px;background:#fff;font-size:11px}.pagination a.active{background:var(--forest);color:#fff;border-color:var(--forest)}.empty-public{padding:60px;text-align:center;border-radius:18px;background:#f2eadf}.empty-public p{color:#647168}
.product-detail-hero{padding:70px 0;background:linear-gradient(135deg,#efe4d2,#fffdf8)}.product-detail-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:72px;align-items:center}.product-detail-image{position:relative}.product-detail-image img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:48% 48% 16px 16px}.product-detail-image>span{position:absolute;left:20px;bottom:20px;padding:8px 11px;border-radius:20px;background:#fff;color:#526058;font-size:9px;font-weight:800}.product-detail h1{font-size:clamp(43px,5vw,70px)}.product-lead{color:#536159;font-size:16px;line-height:1.72}.product-facts{margin:28px 0;padding:18px 0;display:grid;grid-template-columns:repeat(2,1fr);gap:18px;border-block:1px solid #d8cfc1}.product-facts dt{color:#7b8680;font-size:9px;text-transform:uppercase;letter-spacing:.08em}.product-facts dd{margin:5px 0 0;color:var(--forest-deep);font-size:13px;font-weight:750}.data-note{margin-top:25px;color:#7c8680;font-size:9px;line-height:1.6}.product-advice-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:start}
.article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.article-grid.full{grid-template-columns:repeat(3,1fr)}.article-card{overflow:hidden;border:1px solid #ded5c7;border-radius:15px;background:#fff}.article-image{height:215px;display:block;overflow:hidden}.article-image img{width:100%;height:100%;object-fit:cover}.article-card>div{padding:23px}.article-card .eyebrow{margin-bottom:8px}.article-card h2{margin:0;font-size:26px;line-height:1.22}.article-card>div>p{min-height:65px;color:#68746d;font-size:11px;line-height:1.65}.article-meta{padding-top:14px;display:flex;justify-content:space-between;gap:12px;border-top:1px solid #eee6db;color:#818b86;font-size:9px}.article-meta a{color:var(--forest);font-weight:800}.article-hero{padding:70px 0;background:#f1e8da}.article-hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:65px;align-items:center}.article-hero h1{margin:0;color:var(--forest-deep);font-family:Georgia,serif;font-size:clamp(44px,5vw,72px);font-weight:500;line-height:1.03;letter-spacing:-.045em}.article-hero>div>div>p:not(.eyebrow){color:#58665e;font-size:16px;line-height:1.7}.article-hero img{width:100%;height:430px;object-fit:cover;border-radius:50% 50% 14px 14px}.byline{margin-top:25px;display:flex;align-items:center;gap:11px}.avatar{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:var(--forest);color:#fff;font-size:10px;font-weight:850}.byline strong,.byline small{display:block}.byline strong a{color:inherit}.byline small{margin-top:4px;color:#7b8680;font-size:9px}.article-layout{padding-block:70px;display:grid;grid-template-columns:220px minmax(0,760px);justify-content:center;gap:65px}.article-aside{position:sticky;top:25px;align-self:start;display:grid;border-left:2px solid #d8cfc2}.article-aside>*{padding:9px 0 9px 18px}.article-aside strong{color:#95743b;font-size:10px;text-transform:uppercase}.article-aside a{color:#59665f;font-size:11px}.prose{color:#34433b;font-size:15px;line-height:1.82}.prose h2{margin:45px 0 13px;font-size:38px}.prose h3{margin:32px 0 9px;color:var(--forest-deep);font-family:Georgia,serif;font-size:27px;font-weight:500}.prose ul,.prose ol{padding-left:24px}.prose li{margin:8px 0}.prose a{color:var(--leaf);text-decoration:underline}.answer-lead{padding:24px;border-left:4px solid var(--gold);background:#f2eadf;font-size:17px}.fact-box{margin:30px 0;padding:20px;border-radius:10px;background:#e4eee8}.source-box{grid-column:2;margin-top:30px;padding:24px;border-radius:12px;background:#f2eadf}.source-box>span{color:#94733a;font-size:9px;font-weight:800;text-transform:uppercase}.source-box p{margin:8px 0}.source-box small{color:#6d7872;line-height:1.55}
.podcast-page-hero{padding:80px 0;background:var(--forest);color:#fff}.podcast-page-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:70px;align-items:center}.podcast-page-hero h1{color:#fff}.podcast-page-hero>div>div:first-child>p:not(.eyebrow){max-width:720px;color:rgba(255,255,255,.66);font-size:17px;line-height:1.7}.podcast-art.large{min-height:460px;border-radius:50% 50% 16px 16px;background:#071e18}.dark-outline{border-color:rgba(255,255,255,.3);color:#fff}.episode-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.episode-card{overflow:hidden;border:1px solid #ded5c7;border-radius:15px;background:#fff}.episode-card>img{width:100%;height:215px;object-fit:cover}.episode-card>div{padding:23px}.episode-card>div>span{color:#9b793e;font-size:9px;font-weight:850;letter-spacing:.09em}.episode-card h2{margin:10px 0;font-size:26px;line-height:1.22}.episode-card p{color:#68746d;font-size:11px;line-height:1.65}.episode-card audio,.episode-detail audio,.native-audio{width:100%;margin:12px 0}.episode-card a{min-height:40px;display:flex;align-items:center;color:var(--forest);font-size:10px;font-weight:800}.episode-card small{color:#78837d}.podcast-promise{display:grid;grid-template-columns:1fr .8fr;gap:70px}.podcast-promise ul{margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:12px;list-style:none}.podcast-promise li{padding:20px;border-radius:10px;background:#fff;color:var(--forest);font-size:11px;font-weight:750}.podcast-article-hero{background:var(--forest);color:#fff}.podcast-article-hero h1{color:#fff}.podcast-article-hero>div>div>p:not(.eyebrow){color:rgba(255,255,255,.65)}.audio-placeholder{grid-template-columns:48px 1fr!important}.audio-placeholder .audio-play{width:48px;height:48px;display:grid;place-items:center;border-radius:50%;background:var(--coral);color:#fff}.audio-placeholder div{display:grid}.audio-placeholder small{margin-top:4px;color:rgba(255,255,255,.5)}
.about-hero{padding:70px 0}.logo-portrait{position:relative;padding:20px;border-radius:50% 50% 18px 18px;background:#fff}.logo-portrait img{width:100%;display:block;border-radius:50%}.logo-portrait span{position:absolute;right:15px;bottom:15px;padding:8px 12px;border-radius:20px;background:var(--forest);color:#fff;font-size:9px;font-weight:800}.values-list{display:grid}.values-list article{padding:20px 0;display:grid;grid-template-columns:42px 150px 1fr;gap:15px;border-bottom:1px solid #d9d0c3;align-items:center}.values-list article>span{color:var(--gold);font-size:10px;font-weight:800}.values-list h3{margin:0;color:var(--forest);font-family:Georgia,serif;font-size:24px}.values-list p{margin:0;color:#627068;font-size:12px}.identity-card{padding:35px;display:grid;grid-template-columns:230px 1fr;gap:45px;align-items:center;border:1px solid #ded5c7;border-radius:18px;background:#fff}.identity-card img{width:100%;border-radius:50%}.identity-card p{color:#5f6c65;line-height:1.7}
.contact-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:start}.contact-form{padding:34px;border:1px solid #ded5c7;border-radius:18px;background:#fff}.contact-form label{margin-top:17px;display:grid;gap:8px;color:#435148;font-size:11px;font-weight:750}.contact-form label:first-of-type{margin-top:0}.contact-form input,.contact-form select,.contact-form textarea{width:100%;padding:13px;border:1px solid #d3cabc;border-radius:8px;background:#fff;color:#18231e;font:500 14px/1.4 system-ui}.contact-form input,.contact-form select{height:50px}.contact-form textarea{resize:vertical}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:13px}.contact-form .consent{grid-template-columns:20px 1fr;align-items:start;font-weight:500;line-height:1.55}.contact-form .consent input{width:18px;height:18px;margin:1px 0 0;accent-color:var(--forest)}.contact-form .primary-button{margin-top:22px;border:0;cursor:pointer}.honeypot{position:absolute!important;left:-10000px!important}.form-note{color:#7b8580;font-size:9px}.form-error{padding:14px;border-radius:8px;background:#fff0ee;color:#9b3028}.contact-aside{padding:34px;border-radius:18px;background:var(--forest);color:#fff}.contact-aside h2{color:#fff}.contact-aside>p:not(.eyebrow){color:rgba(255,255,255,.65);line-height:1.65}.contact-aside dl{margin:28px 0}.contact-aside dl>div{padding:13px 0;border-bottom:1px solid rgba(255,255,255,.12)}.contact-aside dt{color:var(--gold-light);font-size:9px;text-transform:uppercase}.contact-aside dd{margin:5px 0 0}.contact-promise{padding:20px;border-radius:10px;background:rgba(255,255,255,.08)}.contact-promise p{margin:7px 0 0;color:rgba(255,255,255,.62);font-size:11px;line-height:1.6}
.transparency-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.transparency-grid article{min-height:260px;padding:25px;border:1px solid #ded5c7;border-radius:14px;background:#fff}.transparency-grid article>span{color:var(--gold);font-size:10px;font-weight:850}.transparency-grid h2{margin:23px 0 10px;font-size:27px}.transparency-grid p{margin:0;color:#627068;font-size:11px;line-height:1.65}.legal-copy{max-width:820px}.legal-copy h2{margin-top:42px;font-size:34px}.legal-copy p,.legal-copy li{color:#4e5d55;font-size:14px;line-height:1.8}.fineprint{padding-top:22px;border-top:1px solid #ddd4c7;color:#7a847e!important;font-size:10px!important}.thank-you{min-height:65vh;display:grid;align-items:center;text-align:center}.thank-you .success-icon{width:64px;height:64px;margin:0 auto 20px;display:grid;place-items:center;border-radius:50%;background:#dcece3;color:#28704f;font-size:28px}.thank-you .eyebrow{justify-content:center}.thank-you .hero-actions{justify-content:center}
.agent-panel a{width:100%;min-height:42px;padding:0 13px;display:flex;align-items:center;border:1px solid #ded5c7;border-radius:7px;background:#fff;color:var(--forest);font-size:10px;font-weight:750}.agent-panel[hidden]{display:none!important}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .55s,transform .55s}.reveal.visible,.no-js .reveal{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}*{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
@media(max-width:1100px){.domain-grid{grid-template-columns:1fr 1fr}.catalog-grid{grid-template-columns:1fr 1fr}.transparency-grid{grid-template-columns:1fr 1fr}.product-list-grid{grid-template-columns:1fr 1fr}.footer-grid{grid-template-columns:1.4fr 1fr 1fr}.footer-grid>div:last-child{grid-column:2/4}.article-grid.full{grid-template-columns:1fr 1fr}}
@media(max-width:980px){.nav-links.open{position:absolute;left:15px;right:15px;top:72px;padding:14px;display:grid;background:#fffdf8;border:1px solid #ded5c7;border-radius:12px;box-shadow:0 20px 55px rgba(9,38,30,.18)}.menu-button{margin-left:auto;display:block}.nav-cta{margin-left:0}.subhero-grid,.product-detail-grid,.article-hero-grid,.podcast-page-grid{grid-template-columns:1fr 1fr;gap:35px}.fact-grid{grid-template-columns:1fr 1fr}.quiz-wrap,.faq-preview{grid-template-columns:1fr;gap:45px}.product-filter{grid-template-columns:1fr 1fr}.product-filter .primary-button{width:100%}.footer-grid{grid-template-columns:1fr 1fr}.footer-grid>div:last-child{grid-column:auto}.final-cta-grid{grid-template-columns:1fr}.cta-actions{justify-content:flex-start}}
@media(max-width:760px){.site-wrap{width:calc(100% - 30px)}.independence-bar{font-size:8px}.header-inner{width:calc(100% - 30px)}.brand-words small{display:none}.nav-links.open{top:66px}.hero{min-height:auto}.hero h1{font-size:47px}.hero-actions{display:grid}.hero-actions>*{width:100%}.hero-visual{min-height:350px}.quote-card{left:-2px;max-width:245px}.path-section,.world-section,.knowledge-section,.domain-section,.faq-section,.content-section{padding:65px 0}.path-section,.world-section,.knowledge-section{width:auto}.path-section>.section-heading,.path-section>.path-grid,.path-section>.secondary-button,.world-section>.section-heading,.world-section>.world-grid,.knowledge-section>.section-heading,.knowledge-section>.knowledge-grid,.knowledge-section>.secondary-button{width:calc(100% - 30px);margin-inline:auto}.subhero{padding:60px 0}.subhero h1,.podcast-page-hero h1,.product-detail h1,.thank-you h1{font-size:44px}.subhero-grid,.product-detail-grid,.article-hero-grid,.podcast-page-grid,.split-feature,.product-advice-grid,.contact-grid,.podcast-promise{grid-template-columns:1fr}.subhero-grid>img,.article-hero img{max-height:330px}.fact-grid,.catalog-grid,.product-list-grid,.article-grid.full,.episode-grid,.transparency-grid,.domain-grid{grid-template-columns:1fr}.quiz-wrap{grid-template-columns:1fr}.fit-quiz{padding:22px}.fit-quiz legend{font-size:24px}.faq-page{grid-template-columns:1fr}.faq-page aside{position:static}.product-filter{grid-template-columns:1fr}.search-product-card dl{grid-template-columns:1fr 1fr}.article-layout{padding-block:50px;grid-template-columns:1fr;gap:20px}.article-aside{position:static;display:flex;flex-wrap:wrap;border-left:0;border-bottom:1px solid #ddd4c7}.article-aside>*{padding:10px}.source-box{grid-column:1}.article-hero h1{font-size:43px}.article-hero img{height:300px}.podcast-page-hero{padding:60px 0}.podcast-art.large{min-height:350px}.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;gap:8px}.final-cta{padding:50px 0}.cta-actions{display:grid}.mobile-action{position:fixed;z-index:60;left:12px;right:12px;bottom:max(10px,env(safe-area-inset-bottom));display:block}.mobile-action a{padding:12px 16px;display:flex;justify-content:space-between;align-items:center;border-radius:12px;background:var(--coral);color:#fff;box-shadow:0 12px 30px rgba(102,26,20,.28)}.mobile-action span{font-size:8px}.mobile-action strong{font-size:10px}.site-footer{padding-bottom:100px!important}.agent-dock{bottom:75px;right:12px}.values-list article{grid-template-columns:35px 1fr}.values-list article p{grid-column:2}.identity-card{grid-template-columns:1fr}.identity-card img{max-width:220px;margin:auto}.form-row{grid-template-columns:1fr}.product-detail-image{order:2}.pagination a{width:35px;height:35px}.section-heading h2,.content-section h2{font-size:38px}}

/* Beraterverzeichnis */
.consultant-filter{display:grid;grid-template-columns:1.35fr .65fr auto auto auto;align-items:end;gap:12px}.consultant-filter>label:not(.filter-check){display:grid;gap:7px;color:#536159;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.consultant-filter input[type="search"],.consultant-filter input[name="plz"]{height:48px;padding:0 13px;border:1px solid #d4ccbf;border-radius:8px;background:#fff;color:#1b2a23;font:500 13px/1 system-ui}.filter-check{min-height:48px;display:flex;align-items:center;gap:9px;color:#435148;font-size:11px;font-weight:750}.filter-check input{width:18px;height:18px;accent-color:var(--forest)}.consultant-filter .primary-button{min-height:48px;border:0;cursor:pointer}.directory-heading{margin-bottom:30px;display:flex;align-items:end;justify-content:space-between;gap:25px}.directory-heading h2{font-size:45px}.consultant-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.consultant-card{overflow:hidden;border:1px solid #ded5c7;border-radius:17px;background:#fff;box-shadow:0 14px 36px rgba(15,52,41,.055)}.consultant-card-portrait{height:260px;position:relative;display:grid;place-items:center;overflow:hidden;background:linear-gradient(145deg,#e8ddca,#f8f2e7)}.consultant-card-portrait img{width:100%;height:100%;object-fit:cover}.consultant-card-portrait>span,.consultant-profile-portrait>span{width:118px;height:118px;display:grid;place-items:center;border-radius:50%;background:var(--forest);color:#fff;font-family:Georgia,serif;font-size:38px}.consultant-card-portrait small,.consultant-profile-portrait small{position:absolute;left:16px;bottom:14px;padding:7px 10px;border-radius:14px;background:#fff;color:#2c684e;font-size:8px;font-weight:850}.consultant-card-copy{padding:24px}.consultant-card-copy>span{color:#92733b;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.consultant-card h2{margin:9px 0 4px;font-size:28px;line-height:1.15}.consultant-card h2 a{color:var(--forest-deep)}.consultant-card .business-name{min-height:0;margin:0;color:#846b42;font-size:10px;font-weight:750}.consultant-card-copy>p:not(.business-name){min-height:70px;color:#627068;font-size:11px;line-height:1.65}.specialty-tags{display:flex;flex-wrap:wrap;gap:6px}.specialty-tags span{padding:6px 9px;border-radius:14px;background:#edf1eb;color:#315e4d;font-size:8px;font-weight:750}.specialty-tags.large span{padding:8px 12px;font-size:10px}.directory-trust{padding-top:70px}.consultant-profile-hero{padding:72px 0;background:linear-gradient(135deg,#efe4d2,#fffdf8)}.consultant-profile-grid{display:grid;grid-template-columns:380px 1fr;align-items:center;gap:70px}.consultant-profile-portrait{height:420px;position:relative;display:grid;place-items:center;overflow:hidden;border-radius:48% 48% 18px 18px;background:#e7dcc9}.consultant-profile-portrait img{width:100%;height:100%;object-fit:cover}.consultant-profile-portrait>span{width:160px;height:160px;font-size:52px}.consultant-profile-grid h1{margin:15px 0;color:var(--forest-deep);font-family:Georgia,serif;font-size:clamp(48px,6vw,78px);font-weight:500;line-height:1.02;letter-spacing:-.045em}.back-link{display:inline-flex;margin-bottom:26px;color:#5f6d65;font-size:10px;font-weight:800}.profile-business{margin:0;color:#8e7038;font-weight:750}.profile-location{color:#5b6861;font-size:15px}.consultant-profile-content{display:grid;grid-template-columns:1.2fr .8fr;align-items:start;gap:70px}.profile-bio{color:#4f5f56;font-size:17px;line-height:1.82}.profile-languages{margin-top:25px;color:#5a675f}.profile-contact-card{padding:34px;border-radius:18px;background:var(--forest);color:#fff}.profile-contact-card>span{color:var(--gold-light);font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.1em}.profile-contact-card h2{margin:12px 0 22px;color:#fff;font-size:35px}.profile-contact-links{display:grid;gap:8px}.profile-contact-links a{min-height:48px;padding:0 14px;display:flex;align-items:center;justify-content:space-between;gap:15px;border-radius:8px;background:#fff;color:var(--forest);font-size:11px;font-weight:800}.profile-contact-card>p{margin:22px 0 0;color:rgba(255,255,255,.57);font-size:10px;line-height:1.65}.consultant-register-layout{display:grid;grid-template-columns:1.3fr .7fr;align-items:start;gap:55px}.consultant-form{padding:0}.consultant-form>fieldset{margin:0;padding:32px;border:0;border-bottom:1px solid #e3dbcf}.consultant-form>fieldset>legend{padding-top:32px;color:var(--forest-deep);font-family:Georgia,serif;font-size:27px}.consultant-form>fieldset:first-of-type>legend{padding-top:0}.consultant-form>button,.consultant-form>.form-note{margin-left:32px;margin-right:32px}.consultant-form>button{margin-bottom:0}.consultant-form>.form-note{margin-bottom:30px}.contact-form label>small{color:#7a8580;font-size:9px;font-weight:500;line-height:1.5}.nested-fieldset{margin:22px 0 0;padding:0;border:0}.nested-fieldset legend{color:#435148;font-size:11px;font-weight:750}.public-check-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.public-check-grid label{min-height:48px;margin:0;padding:10px 12px;display:flex;align-items:center;gap:9px;border:1px solid #d8cfc2;border-radius:8px;background:#fff;font-weight:600}.public-check-grid input{width:18px;height:18px;padding:0;accent-color:var(--forest)}.public-visibility{align-items:start}.consent-important{padding:16px;border:1px solid #b99a5f;border-radius:9px;background:#faf4e8}.register-aside{position:sticky;top:24px;padding:34px;border-radius:18px;background:#f1e9dc}.register-aside h2{font-size:38px}.register-aside>p{color:#5f6d65;line-height:1.7}.register-aside .notice-panel{margin-top:28px;background:#fff}.register-aside .notice-panel a{color:var(--leaf);text-decoration:underline}
@media(max-width:1100px){.consultant-grid{grid-template-columns:1fr 1fr}.consultant-filter{grid-template-columns:1fr 1fr auto}.consultant-filter .filter-check{grid-column:1}.consultant-profile-grid{grid-template-columns:320px 1fr;gap:42px}}
@media(max-width:760px){.consultant-filter{grid-template-columns:1fr}.consultant-filter .filter-check{grid-column:auto}.directory-heading{align-items:stretch;flex-direction:column}.consultant-grid{grid-template-columns:1fr}.consultant-card-portrait{height:230px}.consultant-profile-grid,.consultant-profile-content,.consultant-register-layout{grid-template-columns:1fr}.consultant-profile-portrait{height:350px}.consultant-profile-grid{gap:35px}.consultant-profile-content{gap:35px}.public-check-grid{grid-template-columns:1fr}.consultant-form>fieldset{padding:24px 20px}.consultant-form>fieldset>legend{padding-top:24px}.consultant-form>button,.consultant-form>.form-note{margin-left:20px;margin-right:20px}.register-aside{position:static}.directory-heading h2{font-size:36px}}


/* Aktuelles + Newsticker + Frontend-Teilen */
.news-ticker{position:relative;z-index:18;border-bottom:1px solid rgba(15,52,41,.12);background:var(--forest);color:#fff}.news-ticker-inner{min-height:46px;gap:18px}.news-ticker-label{display:inline-flex;align-items:center;gap:8px;flex:none;color:var(--gold-light);font-size:9px;font-weight:900;letter-spacing:.14em}.news-ticker-label span{width:7px;height:7px;border-radius:50%;background:var(--coral);box-shadow:0 0 0 4px rgba(226,73,63,.16)}.news-ticker-window{position:relative;min-width:0;flex:1;height:46px;overflow:hidden}.news-ticker-item{position:absolute;inset:0;display:flex;align-items:center;gap:14px;opacity:0;transform:translateY(7px);pointer-events:none;transition:opacity .28s ease,transform .28s ease}.news-ticker-item.active{opacity:1;transform:none;pointer-events:auto}.news-ticker-item time{flex:none;color:rgba(255,255,255,.58);font-size:9px;font-weight:800}.news-ticker-item strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px}.news-ticker-item>span{margin-left:auto;flex:none;color:var(--gold-light);font-size:9px;font-weight:800}.news-ticker-controls{display:flex;align-items:center;gap:7px;flex:none}.news-ticker-controls button{width:28px;height:28px;padding:0;border:1px solid rgba(255,255,255,.24);border-radius:50%;background:transparent;color:#fff;cursor:pointer}.news-ticker-controls span{min-width:35px;text-align:center;color:rgba(255,255,255,.55);font-size:8px;font-weight:800}
.updates-hero{padding:74px 0 66px;background:linear-gradient(135deg,#f1e7d6,#fffdf8)}.updates-hero .site-wrap{max-width:900px}.updates-hero h1{max-width:760px;margin:0;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:clamp(48px,6vw,78px);font-weight:500;line-height:1.02;letter-spacing:-.045em}.updates-hero p:last-child{max-width:700px;margin:22px 0 0;color:#5b685f;font-size:16px;line-height:1.7}.updates-section{padding:72px 0}.updates-feed{display:grid;gap:36px;max-width:980px}.public-post-card{overflow:hidden;border:1px solid #ded5c7;border-radius:20px;background:#fff;box-shadow:0 18px 46px rgba(15,52,41,.06)}.public-post-image{display:block;aspect-ratio:16/8.4;overflow:hidden;background:#e9e4db}.public-post-image img{width:100%;height:100%;object-fit:cover}.public-post-content{padding:34px 38px 38px}.public-post-meta{display:flex;align-items:center;justify-content:space-between;gap:20px;color:#7b766d;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.public-post-meta span{color:#8a6a32}.public-post-card h2{margin:12px 0 18px;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:clamp(32px,4vw,48px);font-weight:500;line-height:1.08;letter-spacing:-.035em}.public-post-body{color:#4c5b53;font-size:15px;line-height:1.8;white-space:normal}.public-post-tags{margin:22px 0 0;color:#315d4e;font-size:12px;font-weight:750;line-height:1.7}.public-post-tags.large{font-size:14px}.public-post-open{margin-top:24px}.updates-empty{padding:50px;border:1px dashed #cfc4b5;border-radius:18px;text-align:center;background:#fff}.updates-empty strong{font-family:Georgia,"Times New Roman",serif;font-size:30px}.updates-empty p{color:#67736d}
.post-share{margin-top:30px;padding-top:24px;border-top:1px solid #e3ddd3}.post-share>strong{display:block;margin-bottom:13px;color:var(--forest-deep);font-size:11px;text-transform:uppercase;letter-spacing:.08em}.post-share-buttons{display:flex;flex-wrap:wrap;gap:8px}.share-button{min-height:40px;padding:0 13px;display:inline-flex;align-items:center;gap:8px;border:1px solid #d8d1c5;border-radius:9px;background:#fff;color:#31463d;font-size:10px;font-weight:800;cursor:pointer}.share-button:hover{border-color:#9ea99f;background:#f8f5ef}.share-button span{width:20px;height:20px;display:grid;place-items:center;border-radius:50%;background:#edf0ec;font-size:10px}.share-button.facebook span{background:#e7edf8;color:#2755a5}.share-button.instagram span{background:#f4e8f0;color:#9d3c73}.share-button.whatsapp span{background:#e5f5eb;color:#1b7b49}.share-button.telegram span{background:#e5f1f7;color:#2178a6}.share-status{display:block;min-height:18px;margin-top:8px;color:#567066;font-size:9px;font-weight:700}
.public-post-hero{padding:64px 0;background:linear-gradient(135deg,#efe5d5,#fffdf8)}.public-post-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:58px}.public-post-hero h1{margin:13px 0 24px;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:clamp(48px,6vw,76px);font-weight:500;line-height:1.01;letter-spacing:-.045em}.public-post-hero img{width:100%;max-height:520px;aspect-ratio:1.05/1;object-fit:cover;border-radius:18px}.public-post-single-body{padding:68px 0}.narrow-post{max-width:780px}.public-post-prose{color:#34473e;font-size:18px;line-height:1.9}.public-post-single .post-share{margin-top:38px}
@media(max-width:980px){.news-ticker-item>span{display:none}.public-post-hero-grid{grid-template-columns:1fr;gap:32px}.public-post-hero img{max-height:430px;aspect-ratio:16/9}.nav-links{gap:18px}}
@media(max-width:760px){.news-ticker-inner{width:calc(100% - 24px);gap:10px}.news-ticker-label{font-size:8px}.news-ticker-item{gap:8px}.news-ticker-item time{display:none}.news-ticker-item strong{font-size:10px}.news-ticker-controls span{display:none}.news-ticker-controls{gap:4px}.news-ticker-controls button{width:25px;height:25px}.updates-hero{padding:52px 0}.updates-section{padding:42px 0}.public-post-content{padding:24px 20px 26px}.public-post-meta{align-items:flex-start;flex-direction:column;gap:5px}.public-post-card h2{font-size:34px}.public-post-image{aspect-ratio:4/3}.post-share-buttons{display:grid;grid-template-columns:1fr 1fr}.share-button{justify-content:flex-start}.public-post-hero{padding:46px 0}.public-post-single-body{padding:42px 0}.public-post-prose{font-size:16px;line-height:1.8}}
@media(prefers-reduced-motion:reduce){.news-ticker-item{transition:none}}

/* 2.9.0 – Quellenlink, Frontend-Beitragseditor und Social-Preview-Hinweise */
.original-source-link{display:inline-flex;align-items:center;gap:8px;margin:16px 14px 0 0;padding:10px 14px;border:1px solid #d7cdbc;border-radius:999px;color:var(--forest-deep);background:#fffdf8;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}.original-source-link:hover{background:#f4ede2;border-color:#baa98f}.original-source-link.single{margin-top:22px}.frontend-post-editor{margin:34px 0 8px;border:1px solid #cfc7ba;border-radius:18px;background:#f8f5ef;overflow:hidden}.frontend-post-editor>summary{cursor:pointer;padding:17px 20px;font-weight:900;color:var(--forest-deep);list-style:none}.frontend-post-editor>summary::-webkit-details-marker{display:none}.frontend-post-editor>summary:after{content:'＋';float:right}.frontend-post-editor[open]>summary:after{content:'−'}.frontend-post-editor form{display:grid;gap:14px;padding:4px 20px 22px}.frontend-post-editor label{display:grid;gap:7px;color:#32473e;font-size:11px;font-weight:800}.frontend-post-editor input[type=text],.frontend-post-editor input[type=url],.frontend-post-editor textarea,.frontend-post-editor select{width:100%;border:1px solid #d4cec3;border-radius:10px;background:#fff;padding:12px 13px;font:inherit;color:#233a31}.frontend-post-editor textarea{resize:vertical;line-height:1.55}.frontend-post-image-upload{padding:14px;border:1px dashed #c9bca9;border-radius:10px}.frontend-post-editor-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:4px}.frontend-post-saved{margin-bottom:24px;padding:13px 16px;border-radius:10px;background:#e8f3ec;color:#24594d;font-weight:800;font-size:12px}.field-hint{font-weight:500;color:#74827b;font-size:.85em}
.frontend-card-edit{display:inline-block;margin:16px 14px 0 0;font-size:10px;font-weight:900;color:#8b5b2f;text-decoration:underline;text-underline-offset:3px}

/* 3.0 Beitragsgalerie */
.public-post-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:28px 0}.public-post-gallery figure{margin:0;border-radius:20px;overflow:hidden;background:#f1f2ef}.public-post-gallery img{display:block;width:100%;height:100%;aspect-ratio:4/3;object-fit:cover}.public-post-gallery figure:first-child:nth-last-child(1){grid-column:1/-1}.public-post-gallery figure:first-child:nth-last-child(3){grid-column:1/-1}.public-post-gallery figure:first-child:nth-last-child(3) img{aspect-ratio:16/9}@media(max-width:680px){.public-post-gallery{grid-template-columns:1fr}.public-post-gallery figure{grid-column:auto!important}}
.frontend-gallery-editor{border:1px solid rgba(25,76,67,.16);border-radius:16px;padding:14px;margin:14px 0}.frontend-gallery-editor legend{padding:0 8px;font-weight:700}.frontend-gallery-editor>div{display:flex;gap:10px;flex-wrap:wrap}.frontend-gallery-editor label{width:110px;display:grid;gap:6px;font-size:.78rem}.frontend-gallery-editor img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:9px}.frontend-gallery-editor input{width:auto}

/* 3.5.0 – Kategorien, Untermenüs und Beitragssuche */
.nav-dropdown{position:relative;display:flex;align-items:center}.nav-dropdown>a{gap:5px}.nav-dropdown>a>b{font-size:10px;color:#8b7448}.nav-submenu{position:absolute;z-index:80;top:calc(100% - 2px);left:-16px;min-width:255px;padding:10px;background:#fffdf8;border:1px solid #ded5c7;border-radius:14px;box-shadow:0 18px 45px rgba(9,38,30,.14);display:none}.nav-dropdown:hover .nav-submenu,.nav-dropdown:focus-within .nav-submenu{display:grid}.nav-submenu a{min-height:auto!important;padding:9px 10px;border-radius:9px;font-size:12px!important;white-space:nowrap}.nav-submenu a::after{display:none!important}.nav-submenu a:hover{background:#f2f5f1;color:var(--forest)}
.updates-tools{padding:24px 0 10px;background:#f7f8f5;border-bottom:1px solid #e5e5df}.public-content-search{display:grid;grid-template-columns:minmax(220px,1fr) auto auto;gap:10px;align-items:center}.public-content-search input{min-height:48px;border:1px solid #cfd8d3;border-radius:12px;background:#fff;padding:0 15px;font:inherit}.public-content-search button,.public-content-search a{min-height:48px;display:inline-flex;align-items:center;justify-content:center;border-radius:12px;padding:0 17px;font-weight:800}.public-content-search button{border:0;background:var(--forest);color:#fff}.public-content-search a{border:1px solid #cfd8d3;background:#fff;color:var(--forest)}.public-category-nav{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.public-category-nav a{display:inline-flex;align-items:center;gap:7px;min-height:38px;padding:0 12px;border:1px solid #d8dfda;border-radius:999px;background:#fff;color:#34433d;font-size:12px;font-weight:750}.public-category-nav a.active{background:var(--forest);color:#fff;border-color:var(--forest)}.public-category-nav a>span{width:8px;height:8px;border-radius:50%;background:var(--category-color,#8b7448)}.public-category-nav small{opacity:.72;font-weight:800}
@media(max-width:980px){.nav-links.open .nav-dropdown{display:grid}.nav-links.open .nav-dropdown>a{width:100%}.nav-links.open .nav-submenu{position:static;display:grid;box-shadow:none;border:0;border-left:2px solid #e2d8c7;border-radius:0;margin:0 0 6px 10px;padding:3px 0 3px 10px;background:transparent}.nav-links.open .nav-submenu a{padding:7px 8px}.public-content-search{grid-template-columns:1fr auto}}
@media(max-width:620px){.public-content-search{grid-template-columns:1fr}.public-content-search button,.public-content-search a{width:100%}.public-category-nav{flex-wrap:nowrap;overflow:auto;padding-bottom:6px}.public-category-nav a{white-space:nowrap}}

/* 3.6.0 Startseitensuche + Suchergebnisse */
.home-search-section{padding:28px 0;background:#f3f5f1;border-top:1px solid rgba(17,54,43,.08);border-bottom:1px solid rgba(17,54,43,.08)}.home-search-shell{display:grid;grid-template-columns:minmax(260px,.8fr) minmax(420px,1.2fr);align-items:center;gap:40px}.home-search-shell h2{margin:5px 0 8px;font-family:var(--serif);font-size:clamp(30px,3vw,46px);line-height:1.02}.home-search-shell p{margin:0;color:#5b6862}.home-site-search{display:grid;grid-template-columns:1fr auto;gap:10px;padding:8px;border:1px solid #d5ddd8;border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(20,54,43,.06)}.home-site-search input{min-width:0;min-height:54px;border:0;outline:0;padding:0 14px;background:transparent;font:inherit}.home-site-search button{min-height:54px;border:0;border-radius:13px;padding:0 22px;background:var(--forest);color:#fff;font-weight:850;cursor:pointer}.home-site-search button span{margin-left:8px}.search-result-count{margin-top:18px;color:#5d6b65}.site-search-main{max-width:900px;margin-top:22px}.site-search-results{padding-top:42px}.search-result-group+.search-result-group{margin-top:70px}.ticker-toggle{margin-top:7px}.product-card>a{display:block;color:inherit;text-decoration:none}.product-card img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:16px}.product-card h3{margin:.4rem 0}.product-card p{color:#5d6b65}@media(max-width:900px){.home-search-shell{grid-template-columns:1fr;gap:18px}.home-site-search{grid-template-columns:1fr auto}}@media(max-width:620px){.home-site-search{grid-template-columns:1fr}.home-site-search button{width:100%}}

/* 3.6.1 – Screenshot per Copy & Paste in der Frontend-Beitragsbearbeitung */
.frontend-post-image-tools{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:12px}.frontend-clipboard-image-zone{padding:14px;border:1px dashed #c9bca9;border-radius:10px;background:#fffdf9;display:grid;gap:4px;cursor:text;outline:none}.frontend-clipboard-image-zone:focus{border-color:var(--forest-deep);box-shadow:0 0 0 3px rgba(36,89,77,.10)}.frontend-clipboard-image-zone strong{font-size:12px;color:var(--forest-deep)}.frontend-clipboard-image-zone span,.frontend-clipboard-image-zone small{font-size:10px;color:#74827b}.frontend-clipboard-image-preview:empty{display:none}.frontend-clipboard-image-preview img{display:block;margin-top:8px;width:min(100%,280px);max-height:220px;object-fit:contain;border-radius:9px;border:1px solid #ded6ca;background:#fff}@media(max-width:760px){.frontend-post-image-tools{grid-template-columns:1fr}}

/* 3.7.0 – CHOGAN Markenwelten */
.brand-directory-hero{background:linear-gradient(135deg,#f3ede4,#fbfaf6)}.brand-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.brand-directory-card{overflow:hidden;border:1px solid #ded5c7;border-radius:18px;background:#fff}.brand-directory-card>a{display:block;color:inherit}.brand-directory-card img{width:100%;aspect-ratio:2.2/1;object-fit:cover}.brand-directory-card div{padding:20px}.brand-directory-card span{font-size:9px;font-weight:850;letter-spacing:.09em;color:#9b793e}.brand-directory-card h2,.brand-directory-card h3{margin:8px 0;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif}.brand-directory-card h2{font-size:28px}.brand-directory-card p{color:#65736c;line-height:1.65;font-size:12px}.brand-directory-card b{font-size:10px;color:var(--forest)}.brand-subnav{border-top:1px solid #e3ddd3;border-bottom:1px solid #e3ddd3;background:#fff}.brand-subnav .site-wrap{display:flex;gap:7px;overflow:auto;padding-block:10px}.brand-subnav a{white-space:nowrap;padding:8px 11px;border-radius:999px;color:#52655c;font-size:10px;font-weight:800}.brand-subnav a.active,.brand-subnav a:hover{background:var(--forest);color:#fff}.brand-detail-hero{padding:65px 0;background:#f5f2eb}.brand-detail-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center}.brand-detail-grid>img{width:100%;aspect-ratio:2/1;object-fit:cover;border-radius:20px}.brand-detail-hero h1{margin:12px 0 20px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(48px,6vw,78px);line-height:1;color:var(--forest-deep)}.brand-detail-copy{max-width:760px;color:#43584e;font-size:17px;line-height:1.8}.brand-detail-counts{display:flex;flex-wrap:wrap;gap:8px;margin-top:22px}.brand-detail-counts span,.content-brand-link{border:1px solid #d7ddd8;border-radius:999px;background:#fff;padding:8px 12px;font-size:10px;font-weight:800;color:#385247}.content-brand-link{display:inline-flex;gap:7px;align-items:center;margin:10px 0 18px}.content-brand-link span{color:#9b793e;font-size:8px;letter-spacing:.06em}.product-share-section{padding-top:0}.podcast-share-wrap{grid-column:2}.brand-directory-grid.compact{grid-template-columns:repeat(3,minmax(0,1fr))}@media(max-width:980px){.brand-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.brand-detail-grid{grid-template-columns:1fr}.publisher-destination-grid{grid-template-columns:1fr 1fr 1fr}}@media(max-width:760px){.brand-directory-grid,.brand-directory-grid.compact{grid-template-columns:1fr}.brand-detail-hero{padding:45px 0}.brand-detail-grid{gap:28px}.brand-detail-hero h1{font-size:44px}.brand-detail-copy{font-size:15px}.podcast-share-wrap{grid-column:1}}

.brands-dropdown .nav-submenu{min-width:430px;grid-template-columns:1fr 1fr}.brands-dropdown:hover .nav-submenu,.brands-dropdown:focus-within .nav-submenu{display:grid}.brand-directory-share{padding-top:0}@media(max-width:980px){.brands-dropdown .nav-submenu{min-width:0;grid-template-columns:1fr}}


/* 3.9.0 – Hinweis im Footer + kompakter, mobiler Newsticker */
.independence-bar{display:none!important}
.footer-disclosure{margin-bottom:46px;padding:18px 22px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;border:1px solid rgba(216,177,94,.22);border-radius:18px;background:rgba(255,255,255,.045)}
.footer-disclosure-dot{width:9px;height:9px;border-radius:50%;background:var(--gold-light);box-shadow:0 0 0 5px rgba(216,177,94,.1)}
.footer-disclosure p{margin:0;color:rgba(255,255,255,.72);font-size:11px;line-height:1.55}
.footer-disclosure>a{white-space:nowrap;color:var(--gold-light);font-size:10px;font-weight:800}
.news-ticker{position:relative;z-index:18;overflow:hidden;border-bottom:0;background:linear-gradient(90deg,#0a3027,#10463a);color:#fff;box-shadow:0 8px 24px rgba(7,30,24,.08)}
.news-ticker-inner{min-height:64px;gap:18px}
.news-ticker-label{display:inline-flex;align-items:center;gap:9px;flex:none;padding:8px 11px;border:1px solid rgba(255,255,255,.13);border-radius:999px;background:rgba(255,255,255,.05);color:var(--gold-light);font-size:9px;font-weight:900;letter-spacing:.15em}
.news-ticker-live{width:8px;height:8px;border-radius:50%;background:var(--coral);box-shadow:0 0 0 5px rgba(226,73,63,.16);animation:tickerPulse 2.2s ease-in-out infinite}
.news-ticker-window{position:relative;min-width:0;flex:1;height:64px;overflow:hidden}
.news-ticker-item{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:3px;opacity:0;transform:translateY(8px);pointer-events:none;transition:opacity .3s ease,transform .3s ease}
.news-ticker-item.active{opacity:1;transform:none;pointer-events:auto}
.news-ticker-meta{display:flex;align-items:center;gap:6px;max-width:100%;color:rgba(255,255,255,.58);font-size:8px;font-weight:700;line-height:1.2}
.news-ticker-meta em{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--gold-light);font-style:normal;text-transform:uppercase;letter-spacing:.08em}
.news-ticker-item strong{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;white-space:normal;color:#fff;font-size:13px;line-height:1.3}
.news-ticker-controls{display:flex;align-items:center;gap:7px;flex:none}
.news-ticker-controls button{width:34px;height:34px;padding:0;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:rgba(255,255,255,.035);color:#fff;font-size:18px;cursor:pointer;transition:background .2s ease,border-color .2s ease}
.news-ticker-controls button:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.38)}
.news-ticker-controls span{min-width:38px;text-align:center;color:rgba(255,255,255,.48);font-size:8px;font-weight:800}
.news-ticker-progress{position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--gold-light);opacity:.78;transition:width .25s linear}
@keyframes tickerPulse{0%,100%{opacity:1}50%{opacity:.45}}
@media(max-width:760px){
  .footer-disclosure{margin-bottom:34px;padding:16px;grid-template-columns:auto 1fr;gap:10px 12px;border-radius:14px}.footer-disclosure p{font-size:10px}.footer-disclosure>a{grid-column:2;font-size:9px}
  .news-ticker-inner{width:calc(100% - 24px);min-height:76px;gap:9px}.news-ticker-label{padding:7px 8px;font-size:7px;letter-spacing:.12em}.news-ticker-label>span:last-child{display:none}.news-ticker-window{height:76px}.news-ticker-item{gap:4px}.news-ticker-meta{font-size:7px}.news-ticker-meta time{display:inline}.news-ticker-item strong{-webkit-line-clamp:2;font-size:11px;line-height:1.35}.news-ticker-controls{gap:4px}.news-ticker-controls span{display:none}.news-ticker-controls button{width:31px;height:31px;font-size:17px}
}
@media(prefers-reduced-motion:reduce){.news-ticker-live{animation:none}.news-ticker-progress{display:none}}

/* 3.9.0 – mobile-first Stabilitätsschicht */
html{scroll-padding-top:88px}body{overflow-x:hidden}img,video,svg{max-width:100%;height:auto}button,a,input,select,textarea{touch-action:manipulation}.site-wrap{width:min(100% - 28px,1220px)}.hero h1,.subhero h1,.article-hero h1,.brand-detail-hero h1{overflow-wrap:anywhere}.content-section{padding-block:54px}.primary-button,.secondary-button,.text-button,.share-button,.menu-button{min-height:44px}.category-filter-row,.brand-subnav .site-wrap{overflow-x:auto;scrollbar-width:thin;overscroll-behavior-inline:contain}.category-filter-row>*{flex:0 0 auto}.prose,.public-post-prose{overflow-wrap:anywhere}.data-table-wrap{max-width:100%}
@media(max-width:760px){.hero h1{font-size:clamp(2.8rem,13.5vw,4.25rem);line-height:.94}.subhero h1,.article-hero h1,.brand-detail-hero h1{font-size:clamp(2.2rem,10vw,3.5rem)}.hero p,.subhero p{font-size:clamp(1rem,4.4vw,1.22rem)}.news-ticker-inner{min-height:92px}.news-ticker-window strong{font-size:.96rem;line-height:1.18}.news-ticker-controls button{width:44px;height:44px}.share-actions{display:grid;grid-template-columns:1fr 1fr}.share-actions>*{min-height:44px}.footer-grid{gap:30px}.site-footer{padding-bottom:max(30px,env(safe-area-inset-bottom))}}
@media(min-width:761px){.content-section{padding-block:82px}.site-wrap{width:min(100% - 48px,1220px)}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}}

/* 3.10.0 – WYSIWYG in der Frontend-Beitragsbearbeitung */
.frontend-post-editor .wysiwyg-shell{border:1px solid #cad3ce;border-radius:14px;background:#fff;overflow:hidden}.frontend-post-editor .wysiwyg-toolbar{display:flex;gap:6px;flex-wrap:wrap;padding:8px;background:#f3f5f2;border-bottom:1px solid #dce2de;overflow-x:auto}.frontend-post-editor .wysiwyg-toolbar button{min-width:42px;min-height:42px;border:1px solid #d3dbd6;border-radius:8px;background:#fff;color:#173b33;padding:7px 9px;font-size:.72rem;font-weight:850}.frontend-post-editor .wysiwyg-toolbar button.active{background:#173b33;color:#fff}.frontend-post-editor .wysiwyg-surface{min-height:330px;padding:16px;outline:0;line-height:1.75}.frontend-post-editor .wysiwyg-surface blockquote{margin:1em 0;padding:10px 14px;border-left:4px solid #c4a05a;background:#f8f5ef}.frontend-post-editor .wysiwyg-surface a{text-decoration:underline}.frontend-post-editor .wysiwyg-status{display:flex;justify-content:space-between;gap:8px;flex-wrap:wrap;padding:8px 10px;border-top:1px solid #dce2de;color:#65736d;font-size:.72rem}.frontend-post-editor .wysiwyg-fullscreen{position:fixed;z-index:2000;inset:0;background:#fff;display:flex;flex-direction:column}.frontend-post-editor .wysiwyg-fullscreen .wysiwyg-surface{flex:1;overflow:auto;min-height:0}

/* 3.10.0 – semantische WYSIWYG-Inhalte im Frontend */
.wysiwyg-content{display:block}
.wysiwyg-content> :first-child{margin-top:0}
.wysiwyg-content> :last-child{margin-bottom:0}
.wysiwyg-content p{margin:.65em 0}
.wysiwyg-content h2,.wysiwyg-content h3,.wysiwyg-content h4{margin:1.15em 0 .45em;line-height:1.15}
.wysiwyg-content ul,.wysiwyg-content ol{margin:.7em 0;padding-left:1.4em}
.wysiwyg-content li+li{margin-top:.32em}
.wysiwyg-content blockquote{margin:1em 0;padding:.8em 1em;border-left:3px solid currentColor;background:rgba(0,0,0,.035)}
.wysiwyg-content a{text-decoration:underline;text-underline-offset:.14em}

/* 3.12.0 – schrittweise Mobile-First-Komponenten */
.brand-knowledge-grid{display:grid;grid-template-columns:1fr;gap:14px}.brand-knowledge-card{padding:22px;border:1px solid #ddd8ce;border-radius:18px;background:#fff}.brand-knowledge-card>span{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#edf1ee;color:var(--forest);font-weight:850;font-size:10px}.brand-knowledge-card h3{margin:14px 0 9px;font-family:Georgia,"Times New Roman",serif;font-size:26px;color:var(--forest-deep)}.brand-knowledge-card p{margin:0;color:#4d5f56;font-size:15px;line-height:1.78}.brand-knowledge-lead{background:#f6f2e9}.brand-products-overview .heading-row{align-items:end}.brand-next-links{display:flex;flex-direction:column;gap:10px}.product-seo-admin-note{margin:16px 0;padding:14px 16px;border:1px dashed #c8b98f;border-radius:14px;background:#fffdf6;font-size:12px;line-height:1.55}.product-seo-admin-note strong{display:block;color:var(--forest-deep);margin-bottom:4px}.brand-faq-section{padding-top:60px}.catalog-card>a{display:block;color:inherit;height:100%}.catalog-card>a>div{padding:21px}.catalog-card b{display:inline-flex;min-height:44px;align-items:center;color:var(--forest);font-size:10px}.brand-subnav{position:relative}.brand-subnav .site-wrap{scroll-snap-type:x proximity}.brand-subnav a{scroll-snap-align:start;min-height:44px;display:inline-flex;align-items:center}.hero-actions{gap:10px}.hero-actions a{justify-content:center}.brand-directory-card a{min-height:44px}.brand-detail-grid>img{height:auto}
@media(min-width:761px){.brand-knowledge-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.brand-knowledge-card{padding:28px}.brand-knowledge-card h3{font-size:31px}.brand-knowledge-lead{grid-column:1/-1}.brand-next-links{flex-direction:row;justify-content:space-between;align-items:center}.hero-actions a{justify-content:flex-start}}
@media(min-width:1101px){.brand-knowledge-grid{grid-template-columns:1.2fr .8fr .8fr 1.2fr}.brand-knowledge-lead{grid-column:auto}.brand-knowledge-card{min-height:300px}}

/* 3.13.0 – ALLEPRODUKTE.csv: Duftpyramide, offizieller Produktlink, lokale SEO-Bilder */
.product-pyramid-section{background:#f6f3ec}.product-pyramid-grid{display:grid;grid-template-columns:1fr;gap:12px}.product-pyramid-grid article{padding:22px;border:1px solid #ded8cd;border-radius:18px;background:#fff}.product-pyramid-grid article>span{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#edf2ef;color:var(--forest);font-size:10px;font-weight:900}.product-pyramid-grid h3{margin:13px 0 7px;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:26px}.product-pyramid-grid p{margin:0;color:#4f6258;line-height:1.7}.official-product-section{padding-top:28px}.official-product-link{display:grid;grid-template-columns:1fr;gap:20px;align-items:center;padding:24px;border:1px solid rgba(22,69,57,.14);border-radius:22px;background:linear-gradient(135deg,#f7f4ed,#fff)}.official-product-link h2{margin:7px 0 10px;font-family:Georgia,"Times New Roman",serif;color:var(--forest-deep);font-size:clamp(28px,6vw,40px);line-height:1.05}.official-product-link p{margin:0;color:#53655c;line-height:1.7}.official-product-link .primary-button{width:100%;text-align:center;justify-content:center}.product-facts dd strong{color:var(--forest-deep)}
@media(min-width:761px){.product-pyramid-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.official-product-link{grid-template-columns:minmax(0,1fr) auto;padding:32px}.official-product-link .primary-button{width:auto;max-width:380px}}

/* 3.15.0 – Produktwelt, Duftfinder, Raumduftfinder, Beitrags-Produkte */
.finder-jump-links{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.catalog-filter{grid-template-columns:minmax(240px,2fr) minmax(180px,1fr) minmax(180px,1fr) auto}.finder-panel{background:linear-gradient(180deg,#f6f0e7 0%,#fff 100%)}.finder-filter{grid-template-columns:repeat(4,minmax(160px,1fr)) auto}.finder-hero .site-wrap{max-width:980px}.room-fit{font-size:.88rem;padding:10px 12px;border-radius:12px;background:#f3f0e8;margin:12px 0}.room-fit strong{color:#153d32}.article-products{margin-top:48px;padding-top:36px;border-top:1px solid rgba(20,58,48,.15)}.article-products-head{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:20px}.article-products-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.article-product-card{border:1px solid rgba(20,58,48,.14);border-radius:18px;background:#fff;overflow:hidden;box-shadow:0 8px 30px rgba(28,50,42,.06)}.article-product-card>a{display:block;color:inherit;text-decoration:none}.article-product-card img{width:100%;aspect-ratio:1/1;object-fit:contain;background:#f8f6f1}.article-product-card div{padding:16px}.article-product-card small{display:block;color:#6f766f;margin-bottom:6px}.article-product-card h3{font-size:1.05rem;margin:0 0 8px}.article-product-card p{font-size:.9rem;margin:0 0 10px}.article-product-card b{color:#164e3e}.product-suggestion-box{margin:28px 0;padding:20px;border:1px solid rgba(20,58,48,.18);border-radius:16px;background:#f7f4ed}.product-suggestion-box>p{margin-top:0}.product-suggestion-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.product-suggestion-list label{display:flex!important;gap:10px;align-items:flex-start;padding:10px;border-radius:12px;background:#fff;border:1px solid rgba(20,58,48,.1)}.product-suggestion-list input{margin-top:4px}.product-suggestion-list strong,.product-suggestion-list small{display:block}.product-suggestion-list small{color:#6e756f}.agent-suggestion-badge{display:inline-flex;align-items:center;gap:6px;padding:5px 9px;border-radius:999px;background:#e6f0eb;color:#15483a;font-size:.75rem;font-weight:700;margin-bottom:10px}
@media(max-width:1000px){.finder-filter,.catalog-filter{grid-template-columns:repeat(2,minmax(0,1fr))}.article-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.finder-filter,.catalog-filter,.article-products-grid,.product-suggestion-list{grid-template-columns:1fr}.article-products-head{display:block}.finder-jump-links a{width:100%;text-align:center}}
.compact-brand-index{padding-top:34px;padding-bottom:20px}.brand-chip-list{display:flex;gap:9px;flex-wrap:wrap}.brand-chip-list a{display:inline-flex;padding:9px 13px;border:1px solid rgba(20,58,48,.15);border-radius:999px;background:#fff;color:#163f34;text-decoration:none;font-size:.88rem;font-weight:650}.brand-chip-list a:hover{background:#153f34;color:#fff}

/* 3.15.1 – passende Produkte auf Produktdetailseiten */
.related-products-section{background:linear-gradient(180deg,#fffdf8 0%,#f6f0e7 100%)}
.related-products-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.related-product-card{overflow:hidden;border:1px solid rgba(20,58,48,.14);border-radius:18px;background:#fff;box-shadow:0 10px 32px rgba(28,50,42,.06)}
.related-product-card>a{display:block;height:100%;color:inherit;text-decoration:none}
.related-product-image{position:relative;background:#f8f6f1}
.related-product-image img{display:block;width:100%;aspect-ratio:1/1;object-fit:contain}
.relation-badge{position:absolute;left:12px;bottom:12px;padding:6px 9px;border-radius:999px;background:#e6f0eb;color:#15483a;font-size:.72rem;font-weight:800;box-shadow:0 4px 14px rgba(20,58,48,.12)}
.relation-badge.complement{background:#f4ead6;color:#76551e}
.related-product-body{padding:17px}
.related-product-body small{display:block;color:#747d77;margin-bottom:7px}
.related-product-body h3{margin:0 0 9px;color:var(--forest-deep);font-family:Georgia,serif;font-size:1.25rem;font-weight:500}
.related-product-body p{margin:0 0 10px;color:#5e6b64;font-size:.9rem;line-height:1.55}
.related-product-body .recommendation-reason{color:#164e3e;font-weight:750;font-size:.8rem}
.related-product-body b{color:#164e3e;font-size:.82rem}
.recommendation-transparency{max-width:820px;margin:20px 0 0;color:#737d77;font-size:.78rem;line-height:1.55}
@media(max-width:1100px){.related-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.related-products-grid{grid-template-columns:1fr}.related-products-section .heading-row{display:block}}


/* 3.16.0 Podcast-Wissensseiten */
.podcast-filter{display:grid;gap:1rem;align-items:end}.podcast-filter label{display:grid;gap:.45rem}.podcast-topic-tags{display:flex;flex-wrap:wrap;gap:.45rem;margin:.8rem 0 1rem}.podcast-topic-tags a{display:inline-flex;padding:.4rem .65rem;border:1px solid rgba(20,69,58,.18);border-radius:999px;font-size:.78rem;font-weight:700;text-decoration:none}.podcast-topic-tags.light a{border-color:rgba(255,255,255,.35);color:inherit}.podcast-episode-layout{display:grid;gap:2rem}.podcast-episode-main{min-width:0;display:grid;gap:3rem}.podcast-summary{padding:clamp(1.3rem,3vw,2.25rem);background:var(--soft,#f5f1e9);border-radius:24px}.podcast-chapters ol{list-style:none;margin:0;padding:0;display:grid;gap:.7rem}.podcast-chapters li a{display:grid;grid-template-columns:70px 1fr;gap:1rem;padding:1rem 1.1rem;border:1px solid rgba(20,69,58,.14);border-radius:16px;text-decoration:none;background:#fff}.podcast-chapters time{font-weight:800}.podcast-products>h3{margin-top:1.6rem}.download-card-grid{display:grid;gap:1rem}.download-card{padding:1.25rem;border:1px solid rgba(20,69,58,.14);border-radius:18px;background:#fff}.download-card h3{margin:.35rem 0}.podcast-transcript .prose{max-width:none}.transcript-cue{scroll-margin-top:7rem}.transcript-time{display:inline-block;min-width:56px;font-weight:800;text-decoration:none}.podcast-search-section{padding-bottom:0}
@media(min-width:760px){.podcast-filter{grid-template-columns:minmax(260px,2fr) minmax(180px,1fr) auto auto}.download-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:980px){.podcast-episode-layout{grid-template-columns:220px minmax(0,1fr)}.podcast-episode-layout>.article-aside{position:sticky;top:110px;align-self:start}}

/* 3.17.0 – Mobile-first Relaunch: Podcast, Kernseiten und Consent */
.product-orientation-section .narrow{max-width:760px}
.footer-cookie-settings{display:flex;align-items:center;min-height:38px;padding:0;border:0;background:transparent;color:rgba(255,255,255,.72);font:inherit;font-size:12px;cursor:pointer;text-align:left}.footer-cookie-settings:hover,.footer-cookie-settings:focus-visible{color:#fff}
.tracking-consent{position:fixed;z-index:1200;inset:auto 0 0;padding:12px max(12px,env(safe-area-inset-right)) max(12px,env(safe-area-inset-bottom)) max(12px,env(safe-area-inset-left));background:linear-gradient(180deg,transparent,rgba(7,30,24,.18))}.tracking-consent[hidden]{display:none}.tracking-consent-card{width:min(760px,100%);margin:0 auto;padding:18px;display:grid;gap:16px;border:1px solid rgba(15,52,41,.15);border-radius:18px;background:#fff;box-shadow:0 18px 70px rgba(7,30,24,.22)}.tracking-consent-card strong{display:block;color:var(--forest-deep);font:600 1.25rem/1.2 Georgia,serif}.tracking-consent-card p{margin:7px 0 4px;color:#526159;font-size:.92rem;line-height:1.55}.tracking-consent-card a{color:var(--forest);font-size:.82rem;font-weight:800;text-decoration:underline}.tracking-consent-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}.tracking-consent-actions button{width:100%;justify-content:center}

.podcast-mobile-hero{padding-block:54px}.podcast-mobile-hero .podcast-page-grid{grid-template-columns:1fr;gap:28px}.podcast-mobile-hero h1{font-size:clamp(2.65rem,12vw,4.7rem)}.podcast-mobile-hero .podcast-art.large{min-height:280px;max-width:430px;width:100%;margin-inline:auto}.podcast-search-heading{max-width:760px}.podcast-search-heading>p:not(.eyebrow){color:#64726a;line-height:1.65}.podcast-filter{grid-template-columns:1fr}.podcast-filter label{min-width:0}.podcast-filter input,.podcast-filter select{width:100%;min-height:50px}.podcast-filter .primary-button,.podcast-filter .secondary-button{width:100%;justify-content:center}.podcast-topic-scroller{display:flex;gap:8px;margin-top:16px;overflow-x:auto;padding-bottom:6px;scroll-snap-type:x proximity;scrollbar-width:thin}.podcast-topic-scroller a{flex:0 0 auto;scroll-snap-align:start;min-height:42px;padding:10px 14px;display:inline-flex;align-items:center;border:1px solid rgba(20,69,58,.18);border-radius:999px;background:#fff;color:var(--forest);font-size:.78rem;font-weight:800}.podcast-list-section{padding-top:44px}.podcast-episode-grid{grid-template-columns:1fr}.podcast-card{display:grid;grid-template-columns:1fr;overflow:hidden;border-radius:20px}.podcast-card-cover{display:block;background:#eae4d8}.podcast-card-cover img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}.podcast-card-content{padding:18px;display:flex;flex-direction:column}.podcast-card-meta{display:flex;flex-wrap:wrap;gap:6px 12px;color:#758078;font-size:.72rem;font-weight:750}.podcast-card h2{margin:9px 0 8px;font-size:clamp(1.45rem,6vw,1.9rem);line-height:1.15}.podcast-card h2 a{color:inherit}.podcast-card p{margin:0;color:#5e6b64;font-size:.92rem;line-height:1.6}.podcast-topic-tags.compact{margin:.9rem 0;display:flex;flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}.podcast-topic-tags.compact::-webkit-scrollbar{display:none}.podcast-topic-tags.compact a{flex:0 0 auto}.podcast-card-button{margin-top:auto;width:100%;justify-content:center}.podcast-episode-layout{grid-template-columns:1fr}.podcast-episode-main{gap:2rem}.podcast-summary{border-radius:18px}.podcast-chapters li a{grid-template-columns:58px 1fr;padding:.85rem}.podcast-transcript .prose{font-size:1rem;line-height:1.78}.transcript-cue{scroll-margin-top:5.5rem}.download-card-grid{grid-template-columns:1fr}

/* Mobile first safety net for all public page types. */
@media(max-width:760px){
  .site-wrap{width:min(100% - 24px,1220px)}
  .content-section{padding-block:46px}
  .section-heading.heading-row,.article-products-head{display:grid;gap:14px;align-items:start}
  .section-heading h2,.content-section h2,.faq-preview h2{font-size:clamp(2rem,9vw,3rem);line-height:1.05}
  .hero-grid,.subhero-grid,.path-grid,.world-grid,.knowledge-grid,.faq-preview,.quiz-wrap,.product-detail-grid,.product-advice-grid,.article-hero-grid,.article-layout,.podcast-page-grid,.podcast-episode-layout,.contact-grid,.brand-detail-grid,.final-cta-grid,.footer-grid,.consultant-detail-grid,.consultant-register-grid{grid-template-columns:1fr!important;gap:28px!important}
  .catalog-grid,.article-grid,.article-grid.full,.product-grid,.product-list-grid,.brand-directory-grid,.brand-directory-grid.compact,.article-products-grid,.related-products-grid{grid-template-columns:1fr!important}
  .product-facts{grid-template-columns:1fr 1fr;gap:14px}.product-detail-hero{padding-block:42px}.product-detail-image img{border-radius:24px}.product-detail h1{font-size:clamp(2.2rem,10vw,3.5rem)}
  .article-hero{padding-block:44px}.article-hero img{height:auto;aspect-ratio:16/10;border-radius:18px}.article-layout{padding-block:44px}.article-aside{position:static;display:flex;gap:8px;overflow-x:auto;border:0;padding-bottom:5px}.article-aside>*{flex:0 0 auto;padding:9px 12px;border:1px solid #d8cfc2;border-radius:999px}.source-box{grid-column:1}
  .catalog-card img{height:auto;aspect-ratio:4/3}.article-image{height:auto;aspect-ratio:16/10}.article-card>div>p{min-height:0}
  .footer-bottom{display:grid;gap:8px}.footer-grid{gap:26px!important}.site-footer .footer-grid>div:not(:first-child) a,.footer-cookie-settings{min-height:44px}
  .final-cta{padding-block:44px}.cta-actions{display:grid;grid-template-columns:1fr;gap:8px}.cta-actions>*{width:100%;justify-content:center}
  .product-filter,.catalog-filter,.finder-filter{grid-template-columns:1fr!important}.filter-reset{min-height:44px;display:flex;align-items:center}
  .form-row,.form-grid.two{grid-template-columns:1fr!important}
  .mobile-action{padding-bottom:env(safe-area-inset-bottom)}
}
@media(min-width:761px){
  .tracking-consent-card{grid-template-columns:1fr auto;align-items:center;padding:20px 22px}.tracking-consent-actions{min-width:300px}
  .podcast-filter{grid-template-columns:minmax(0,2fr) minmax(190px,1fr) auto auto}.podcast-filter .primary-button,.podcast-filter .secondary-button{width:auto}
  .podcast-episode-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.podcast-card-cover img{aspect-ratio:16/9}.podcast-card-content{padding:22px}
}
@media(min-width:980px){
  .podcast-mobile-hero{padding-block:76px}.podcast-mobile-hero .podcast-page-grid{grid-template-columns:1.12fr .88fr;gap:64px}.podcast-mobile-hero .podcast-art.large{min-height:430px}.podcast-episode-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.podcast-episode-layout{grid-template-columns:280px minmax(0,1fr)}.podcast-episode-layout>.article-aside{grid-column:1}.podcast-episode-layout>.podcast-episode-main{grid-column:2;min-width:0}
}

/* 3.17.2 Podcast detail layout hotfix */
.podcast-episode-main,.podcast-summary,.podcast-chapters,.podcast-products,.podcast-downloads,.podcast-transcript{max-width:100%;min-width:0}.podcast-summary,.podcast-transcript,.podcast-episode-main{overflow-wrap:anywhere}.podcast-article-hero .article-hero-grid>*{min-width:0}
@media(max-width:979px){.podcast-episode-layout>.article-aside,.podcast-episode-layout>.podcast-episode-main{grid-column:auto}}


/* 3.17.3 – Podcast detail: deterministic layout + cache-safe release */
.podcast-episode-layout{display:flex!important;flex-direction:column;align-items:stretch;gap:28px!important;width:min(1200px,calc(100% - 48px));max-width:1200px;margin-inline:auto}
.podcast-episode-layout>.article-aside{flex:0 0 auto;min-width:0;max-width:100%}
.podcast-episode-layout>.podcast-episode-main{flex:1 1 auto;width:100%;max-width:100%;min-width:0;margin:0!important;transform:none!important;position:relative;left:auto!important;right:auto!important}
.podcast-episode-main>*{width:100%;max-width:100%;min-width:0;box-sizing:border-box}
.podcast-products .catalog-grid,.podcast-products .product-grid{width:100%;max-width:100%;min-width:0}
@media(min-width:980px){
  .podcast-episode-layout{flex-direction:row;align-items:flex-start;gap:48px!important}
  .podcast-episode-layout>.article-aside{flex:0 0 220px;width:220px;position:sticky;top:110px;align-self:flex-start}
  .podcast-episode-layout>.podcast-episode-main{flex:1 1 0;width:0;min-width:0}
}
@media(max-width:979px){
  .podcast-episode-layout{width:min(100% - 24px,1200px)}
  .podcast-episode-layout>.article-aside{position:static}
}


/* 3.17.4 – Startseite: kompakter, mobile first, alle CHOGAN Marken */
.page-home .hero{min-height:560px;padding:48px 0 58px;grid-template-columns:1.02fr .98fr;gap:42px}
.page-home .hero h1{max-width:660px;font-size:clamp(42px,4.55vw,68px);line-height:1}
.page-home .hero-intro{max-width:590px;margin-top:22px;font-size:16px;line-height:1.62}
.page-home .hero-actions{margin-top:26px;gap:10px}
.page-home .hero-actions .home-secondary{margin-top:0;background:#e8ddc9;color:var(--forest-deep);box-shadow:none}
.page-home .trust-row{margin-top:24px;gap:16px}
.page-home .hero-visual{min-height:455px}
.page-home .hero-image-wrap{inset:0 0 18px 18px}
.page-home .section-heading{margin-bottom:30px}
.page-home .section-heading h2,.page-home .podcast-copy h2,.page-home .home-podcast-section h2{font-size:clamp(30px,3vw,44px);line-height:1.06}
.page-home .section-heading>p:last-child{margin-top:12px;font-size:14px;line-height:1.6}
.page-home .path-section,.page-home .world-section,.page-home .knowledge-section{padding-top:64px;padding-bottom:64px}

.page-home .home-search-section{padding-block:24px;background:#f4efe6;border-block:1px solid rgba(15,52,41,.08)}
.page-home .home-search-shell{display:grid;grid-template-columns:minmax(0,.85fr) minmax(420px,1.15fr);gap:32px;align-items:center}
.page-home .home-search-shell h2{margin:2px 0 4px;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:28px;font-weight:500}
.page-home .home-search-shell p:not(.eyebrow){margin:0;color:#647169;font-size:12px;line-height:1.5}
.page-home .home-site-search{display:grid;grid-template-columns:1fr auto;gap:8px}
.page-home .home-site-search input{min-width:0;min-height:48px;padding:0 15px;border:1px solid #d7d0c4;border-radius:10px;background:#fff;font:inherit;color:var(--forest-deep)}
.page-home .home-site-search button{min-height:48px;padding:0 18px;border:0;border-radius:10px;background:var(--forest);color:#fff;font-weight:800;cursor:pointer}

.page-home .home-quick-section{padding:52px 0;background:#fff}
.page-home .home-compact-heading{max-width:none;margin:0 0 22px;text-align:left}
.page-home .home-compact-heading .eyebrow{justify-content:flex-start}
.page-home .home-quick-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.page-home .home-quick-grid>a{min-width:0;min-height:112px;padding:18px;display:grid;grid-template-columns:38px minmax(0,1fr);grid-template-rows:auto auto;column-gap:12px;align-content:center;border:1px solid #e1dbd0;border-radius:16px;background:#faf8f3;color:inherit;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.page-home .home-quick-grid>a:hover{transform:translateY(-2px);border-color:#cdbb98;box-shadow:0 10px 28px rgba(14,50,40,.07)}
.page-home .home-quick-grid>a>span{grid-row:1/3;width:38px;height:38px;display:grid;place-items:center;border-radius:50%;background:#e8efe9;color:var(--forest);font-size:18px}
.page-home .home-quick-grid strong{align-self:end;color:var(--forest-deep);font-size:15px;line-height:1.2}
.page-home .home-quick-grid small{align-self:start;margin-top:4px;color:#69756e;font-size:10px;line-height:1.45}

.page-home .home-brands-section{background:var(--paper)}
.page-home .home-brand-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.page-home .home-brand-card{min-width:0;overflow:hidden;display:grid;grid-template-rows:104px auto auto;padding-bottom:14px;border:1px solid #e3ddd2;border-radius:14px;background:#fff;color:inherit;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.page-home .home-brand-card:hover{transform:translateY(-2px);border-color:#cfbf9d;box-shadow:0 10px 28px rgba(14,50,40,.07)}
.page-home .home-brand-card img{width:100%;height:104px;object-fit:cover;background:#f1ede5}
.page-home .home-brand-card span{padding:12px 14px 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#96763e;font-size:8px;font-weight:850;letter-spacing:.09em;text-transform:uppercase}
.page-home .home-brand-card strong{padding:4px 14px 0;overflow-wrap:anywhere;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:19px;font-weight:500;line-height:1.12}

.page-home .home-products-section{padding:64px 0;background:#f5f1e9}
.page-home .home-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.page-home .home-product-card{min-width:0;overflow:hidden;display:grid;grid-template-columns:112px minmax(0,1fr);min-height:132px;border:1px solid #dfd8cd;border-radius:15px;background:#fff;color:inherit;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.page-home .home-product-card:hover{transform:translateY(-2px);border-color:#cdbb98;box-shadow:0 10px 28px rgba(14,50,40,.07)}
.page-home .home-product-card img{width:112px;height:132px;padding:8px;object-fit:contain;background:#faf9f6}
.page-home .home-product-card>div{min-width:0;padding:15px 14px 14px;display:flex;flex-direction:column;justify-content:center}
.page-home .home-product-card h3{margin:0;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:17px;font-weight:500;line-height:1.18;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.page-home .home-product-card p{margin:7px 0 0;color:#66736c;font-size:10px;line-height:1.5;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3}

.page-home .home-knowledge-section .knowledge-grid img{height:150px}
.page-home .home-knowledge-section .knowledge-grid article>div{padding:18px}
.page-home .home-knowledge-section .knowledge-grid h3{min-height:0;font-size:21px}

.page-home .home-podcast-section{padding:64px 0;background:var(--forest);color:#fff}
.page-home .home-podcast-grid{display:grid;grid-template-columns:220px minmax(0,1fr);gap:38px;align-items:center;max-width:980px}
.page-home .home-podcast-cover{display:block;overflow:hidden;border-radius:18px;background:#0b2a21}
.page-home .home-podcast-cover img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover}
.page-home .home-podcast-section .eyebrow{color:var(--gold-light)}
.page-home .home-podcast-section h2{margin:0;max-width:720px;color:#fff}
.page-home .home-podcast-section p:not(.eyebrow){max-width:720px;margin:14px 0 0;color:rgba(255,255,255,.68);font-size:14px;line-height:1.62}
.page-home .home-podcast-section .text-button{color:var(--gold-light)}

.page-home .home-path-section .path-grid article{min-height:205px;padding:24px}
.page-home .home-path-section .path-grid h3{margin-top:20px;font-size:21px}
.page-home .home-path-section .path-grid b{font-size:30px}
.page-home .home-faq-section{padding-block:64px}

@media(max-width:1050px){
  .page-home .home-brand-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .page-home .home-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .page-home .home-search-shell{grid-template-columns:1fr;gap:14px}
}
@media(max-width:760px){
  .page-home .hero{width:min(100% - 24px,1200px);grid-template-columns:1fr!important;gap:24px!important;padding:34px 0 42px}
  .page-home .hero h1{font-size:clamp(2.35rem,10.7vw,3.25rem);line-height:.98}
  .page-home .hero-intro{margin-top:16px;font-size:1rem;line-height:1.55}
  .page-home .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .page-home .hero-actions .primary-button{grid-column:1/-1}
  .page-home .hero-actions .text-button{width:100%;justify-content:center}
  .page-home .trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;font-size:9px}
  .page-home .trust-row>div{display:grid;justify-items:center;text-align:center;gap:4px}
  .page-home .hero-visual{min-height:300px}
  .page-home .hero-image-wrap{inset:0;border-radius:28% 28% 14px 14px}
  .page-home .image-badge{right:10px;bottom:10px;padding:9px 11px}
  .page-home .section-heading{margin-bottom:22px}
  .page-home .section-heading h2,.page-home .home-podcast-section h2{font-size:clamp(1.8rem,8vw,2.35rem)}
  .page-home .path-section,.page-home .world-section,.page-home .knowledge-section,.page-home .home-products-section,.page-home .home-podcast-section,.page-home .home-faq-section{padding-top:46px;padding-bottom:46px}
  .page-home .home-search-section{padding-block:18px}
  .page-home .home-search-shell h2{font-size:24px}
  .page-home .home-site-search{grid-template-columns:1fr}
  .page-home .home-site-search button{width:100%}
  .page-home .home-quick-section{padding:42px 0}
  .page-home .home-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .page-home .home-quick-grid>a{min-height:118px;padding:14px;display:flex;flex-direction:column;align-items:flex-start;gap:6px}
  .page-home .home-quick-grid>a>span{width:34px;height:34px;flex:0 0 auto}
  .page-home .home-quick-grid strong{font-size:14px}
  .page-home .home-quick-grid small{font-size:9px;line-height:1.35}
  .page-home .heading-row{display:grid;gap:10px;align-items:start}
  .page-home .home-brand-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .page-home .home-brand-card{grid-template-rows:82px auto auto;padding-bottom:11px;border-radius:12px}
  .page-home .home-brand-card img{height:82px}
  .page-home .home-brand-card span{padding:9px 10px 0;font-size:7px}
  .page-home .home-brand-card strong{padding:3px 10px 0;font-size:16px}
  .page-home .home-product-grid{grid-template-columns:1fr;gap:8px}
  .page-home .home-product-card{grid-template-columns:90px minmax(0,1fr);min-height:108px}
  .page-home .home-product-card img{width:90px;height:108px;padding:7px}
  .page-home .home-product-card>div{padding:12px}
  .page-home .home-product-card h3{font-size:16px}
  .page-home .home-product-card p{font-size:9px;-webkit-line-clamp:2}
  .page-home .home-knowledge-section .knowledge-grid{gap:10px!important}
  .page-home .home-knowledge-section .knowledge-grid article{display:grid;grid-template-columns:110px minmax(0,1fr)}
  .page-home .home-knowledge-section .knowledge-grid img{width:110px;height:100%;min-height:120px}
  .page-home .home-knowledge-section .knowledge-grid article>div{padding:14px}
  .page-home .home-knowledge-section .knowledge-grid h3{font-size:17px}
  .page-home .home-podcast-grid{grid-template-columns:100px minmax(0,1fr);gap:16px}
  .page-home .home-podcast-section h2{font-size:1.65rem}
  .page-home .home-podcast-section p:not(.eyebrow){font-size:.9rem;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3}
  .page-home .home-podcast-section .hero-actions{grid-column:auto;display:flex;flex-wrap:wrap}.page-home .home-podcast-section .hero-actions .primary-button{grid-column:auto;width:auto}
  .page-home .home-path-section .path-grid article{min-height:0}
}
@media(max-width:390px){
  .page-home .home-brand-grid{grid-template-columns:1fr 1fr}
  .page-home .home-quick-grid{grid-template-columns:1fr 1fr}
  .page-home .home-podcast-grid{grid-template-columns:1fr}.page-home .home-podcast-cover{max-width:160px}
}

/* 3.18.0 – Beratergewinnung als mobile-first DUFT.ES Hub. */
.advisor-v2-hero{padding:42px 0 30px;background:linear-gradient(180deg,#fbf7ef 0%,#fffdf8 100%);border-bottom:1px solid rgba(15,52,41,.08)}
.advisor-v2-hero-grid{display:grid;grid-template-columns:1fr;gap:28px;align-items:center}
.advisor-v2-copy h1{max-width:820px;margin:14px 0 0;color:var(--forest-deep);font-family:Georgia,"Times New Roman",serif;font-size:clamp(38px,10vw,58px);font-weight:500;line-height:1.02;letter-spacing:-.04em}
.advisor-v2-lead{max-width:760px;margin:20px 0 0;color:#52635b;font-size:17px;line-height:1.7}
.advisor-v2-actions{margin-top:24px;display:grid;grid-template-columns:1fr;gap:10px;align-items:center}
.advisor-whatsapp-button{min-height:50px;padding:12px 16px;display:inline-flex;align-items:center;justify-content:center;gap:10px;border:1px solid #17643f;border-radius:10px;background:#17643f;color:#fff;text-decoration:none;font-size:12px;font-weight:850;line-height:1.3;box-shadow:0 10px 26px rgba(23,100,63,.16)}
.advisor-whatsapp-button:hover{background:#104f32;color:#fff;transform:translateY(-1px)}
.advisor-whatsapp-button span{width:24px;height:24px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.15);font-size:12px}
.advisor-whatsapp-button.compact{min-height:42px;padding:9px 13px;font-size:10px;box-shadow:none}
.advisor-v2-contact-note{margin:12px 0 0;color:#6b776f;font-size:11px;line-height:1.55}.advisor-v2-contact-note a{color:#17643f;font-weight:800}
.advisor-v2-visual{margin:0;overflow:hidden;border-radius:18px;background:#070707;box-shadow:0 22px 55px rgba(15,52,41,.13)}
.advisor-v2-visual img{width:100%;height:auto;display:block;aspect-ratio:1200/628;object-fit:cover}.advisor-v2-visual figcaption{padding:12px 14px;background:#0b0b0b;color:#d9d2c7;font-size:9px;line-height:1.45}
.advisor-v2-trust{padding:0;background:#fffdf8}.advisor-v2-trust-grid{display:grid;grid-template-columns:1fr 1fr;border:1px solid #e1d9cc;border-radius:14px;overflow:hidden;background:#fff}.advisor-v2-trust-grid>div{min-width:0;padding:15px 12px;border-right:1px solid #ece4d8;border-bottom:1px solid #ece4d8}.advisor-v2-trust-grid>div:nth-child(2n){border-right:0}.advisor-v2-trust-grid>div:nth-last-child(-n+2){border-bottom:0}.advisor-v2-trust strong,.advisor-v2-trust span{display:block}.advisor-v2-trust strong{color:var(--forest-deep);font-size:10px}.advisor-v2-trust span{margin-top:4px;color:#728078;font-size:8px;line-height:1.4}
.advisor-v2-heading{max-width:820px}.advisor-v2-heading h2{font-size:clamp(34px,8vw,48px)!important}.advisor-v2-heading>p:last-child{max-width:720px;color:#647169;line-height:1.65}
.advisor-path-grid{display:grid;grid-template-columns:1fr;gap:12px}.advisor-path-card{padding:22px;display:block;border:1px solid #ded5c7;border-radius:15px;background:#fff;color:inherit;text-decoration:none;transition:transform .16s,border-color .16s,box-shadow .16s}.advisor-path-card:hover{transform:translateY(-2px);border-color:#b8b0a4;box-shadow:0 14px 30px rgba(15,52,41,.07)}.advisor-path-card>span{color:var(--gold);font-size:10px;font-weight:850}.advisor-path-card h3{margin:20px 0 8px;color:var(--forest-deep);font-family:Georgia,serif;font-size:27px;font-weight:500;line-height:1.1}.advisor-path-card p{margin:0;color:#617067;font-size:12px;line-height:1.62}.advisor-path-card b{margin-top:18px;display:block;color:var(--forest);font-size:10px}.advisor-path-card.highlight{background:var(--forest);border-color:var(--forest)}.advisor-path-card.highlight h3,.advisor-path-card.highlight b{color:#fff}.advisor-path-card.highlight p{color:rgba(255,255,255,.72)}
.advisor-team-grid{display:grid;grid-template-columns:1fr;gap:30px;align-items:start}.advisor-inline-actions{margin-top:24px;display:flex;flex-wrap:wrap;gap:13px;align-items:center}.advisor-team-panel{padding:24px;border-radius:18px;background:var(--forest);color:#fff}.advisor-team-kicker{display:block;margin-bottom:10px;color:var(--gold-light);font-size:9px;font-weight:850;letter-spacing:.12em}.advisor-team-panel h3{margin:0 0 18px;font-family:Georgia,serif;font-size:30px;font-weight:500}.advisor-team-panel>div{padding:17px 0;border-top:1px solid rgba(255,255,255,.1)}.advisor-team-panel strong{font-size:11px}.advisor-team-panel p{margin:5px 0 0;color:rgba(255,255,255,.69);font-size:11px;line-height:1.55}
.advisor-v2-earnings{background:var(--forest)!important;color:#fff}.advisor-earnings-grid{display:grid;grid-template-columns:1fr;gap:30px}.advisor-earnings-grid h2{max-width:760px;margin:12px 0 16px;color:#fff!important;font-family:Georgia,serif;font-size:clamp(35px,8vw,50px)!important;font-weight:500;line-height:1.08}.advisor-earnings-grid>div>p:last-child{max-width:800px;color:rgba(255,255,255,.72);line-height:1.7}.advisor-earnings-points{display:grid;gap:10px}.advisor-earnings-points article{padding:18px;border:1px solid rgba(255,255,255,.13);border-radius:12px;background:rgba(255,255,255,.055)}.advisor-earnings-points span{display:block;color:var(--gold-light);font-size:10px;font-weight:850}.advisor-earnings-points p{margin:7px 0 0;color:rgba(255,255,255,.72);font-size:11px;line-height:1.55}
.advisor-tools-grid{display:grid;grid-template-columns:1fr;gap:12px}.advisor-tools-grid article{padding:22px;border:1px solid #ddd5c8;border-radius:15px;background:#fff}.advisor-tools-grid article>span{color:#8b6b34;font-size:8px;font-weight:850;letter-spacing:.1em}.advisor-tools-grid h3{margin:16px 0 8px;color:var(--forest-deep);font-family:Georgia,serif;font-size:25px;font-weight:500}.advisor-tools-grid p{margin:0;color:#657269;font-size:11px;line-height:1.6}.advisor-tools-grid a{margin-top:17px;display:inline-block;color:var(--forest);font-size:10px;font-weight:850;text-decoration:none}
.advisor-v2-quiz{padding-block:70px}.advisor-content-links{display:grid;grid-template-columns:1fr 1fr;gap:10px}.advisor-content-links a{min-width:0;padding:18px;border:1px solid #ded6ca;border-radius:12px;background:#fff;color:inherit;text-decoration:none}.advisor-content-links strong,.advisor-content-links span{display:block}.advisor-content-links strong{color:var(--forest-deep);font-size:12px}.advisor-content-links span{margin-top:7px;color:#6b7770;font-size:9px;line-height:1.45}
.advisor-decision-section{background:#f4ecdf}.advisor-decision-grid{display:grid;grid-template-columns:1fr;gap:25px}.advisor-decision-grid h2{font-size:clamp(35px,8vw,50px)!important}.advisor-decision-note{padding:22px;border-radius:15px;background:#fff;border:1px solid #ded5c7}.advisor-decision-note strong{color:var(--forest-deep);font-size:13px}.advisor-decision-note p{color:#5f6c65;line-height:1.65}.advisor-decision-note a{color:var(--forest);font-size:10px;font-weight:850}.advisor-faq-section .advisor-whatsapp-button{margin-top:20px}.home-advisor-actions{margin-top:22px;display:flex;flex-wrap:wrap;gap:10px;align-items:center}
@media(min-width:600px){.advisor-v2-actions{grid-template-columns:max-content max-content;justify-content:start}.advisor-path-grid{grid-template-columns:1fr 1fr}.advisor-tools-grid{grid-template-columns:1fr 1fr}.advisor-v2-trust-grid{grid-template-columns:repeat(4,1fr)}.advisor-v2-trust-grid>div{border-bottom:0!important;border-right:1px solid #ece4d8!important}.advisor-v2-trust-grid>div:last-child{border-right:0!important}}
@media(min-width:900px){.advisor-v2-hero{padding:64px 0 44px}.advisor-v2-hero-grid{grid-template-columns:minmax(0,1.02fr) minmax(380px,.98fr);gap:46px}.advisor-v2-copy h1{font-size:clamp(48px,5vw,70px)}.advisor-team-grid{grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);gap:58px}.advisor-earnings-grid{grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr);gap:60px;align-items:start}.advisor-decision-grid{grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:50px;align-items:center}}
@media(min-width:1120px){.advisor-path-grid{grid-template-columns:repeat(4,1fr)}.advisor-tools-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:600px){.home-advisor-actions{display:grid}.home-advisor-actions>*{width:100%}}
@media(max-width:430px){.advisor-content-links{grid-template-columns:1fr}.advisor-v2-trust-grid{grid-template-columns:1fr}.advisor-v2-trust-grid>div{border-right:0!important;border-bottom:1px solid #ece4d8!important}.advisor-v2-trust-grid>div:last-child{border-bottom:0!important}.advisor-v2-copy h1{font-size:40px}.advisor-v2-visual{border-radius:13px}}

/* Berater-Conversion 3.18.1: offizieller Registrierungsweg früh und klar sichtbar */
.advisor-v2-actions-priority{align-items:stretch}
.advisor-v2-actions-priority .advisor-registration-button{min-height:52px;text-align:center;justify-content:center}
.advisor-v2-actions-priority .text-button{align-self:center;justify-self:start}
.advisor-registration-strip{padding:14px 0;background:#fffdf8;border-bottom:1px solid rgba(15,52,41,.08)}
.advisor-registration-strip-inner{display:flex;flex-direction:column;gap:12px;align-items:stretch;padding-top:0;padding-bottom:0}
.advisor-registration-strip-inner>div{display:grid;gap:3px}
.advisor-registration-strip-inner strong{color:var(--forest-deep);font-size:12px}
.advisor-registration-strip-inner span{color:#657269;font-size:10px;line-height:1.45}
.advisor-registration-strip .primary-button{min-height:46px;justify-content:center;text-align:center}
.advisor-mobile-register a{background:var(--forest)!important;box-shadow:0 12px 30px rgba(15,52,41,.28)!important}
@media(min-width:600px){.advisor-registration-strip-inner{flex-direction:row;align-items:center;justify-content:space-between}.advisor-registration-strip .primary-button{flex:0 0 auto}.advisor-v2-actions-priority{grid-template-columns:max-content max-content}.advisor-v2-actions-priority .text-button{grid-column:1/-1}}
@media(min-width:1000px){.advisor-v2-actions-priority{display:flex;flex-wrap:wrap}.advisor-v2-actions-priority .text-button{align-self:center}}
