/* =========================================================
   Central Aesthetics – Behandlungsseiten (unterer Bereich)
   Child-Theme-Stylesheet für die Divi-Code-Module   v2.0.0
   ---------------------------------------------------------
   VOLLSTÄNDIG GESCOPED: Alle Regeln greifen nur innerhalb
   von Elementen mit der Klasse .ca (jede Sektion und jeder
   Crease-Trenner im JSON trägt sie). Keine globalen p/h2/
   body/section-Regeln mehr – andere Seiten bleiben unberührt.
   Einzige bewusste Ausnahme: html - scroll-behavior smooth.
   WICHTIG: Der Seitenhintergrund (#F2EEE9) wird NICHT mehr
   hier gesetzt – er gehört in die Divi-/Theme-Einstellung
   (bei euch durch den oberen Seitenbereich bereits gesetzt).
   ========================================================= */
.ca {
    --ivory: #F2EEE9;
    --sand: #E7DED2;
    --sand-deep: #DED3C6;
    --clay: #A9847A;
    --clay-deep: #8A655B;
    --clay-soft: rgba(169, 132, 122, .16);
    --ink: #2A2420;
    --stone: #7C716A;
    --hairline: #DCD0C2;
    --white: #fff;
    --head: "Montserrat", system-ui, sans-serif;
    --body: "Quicksand", system-ui, sans-serif;
    --maxw: 1180px;
    --pad: clamp(20px, 5vw, 64px);
    --rail: clamp(64px, 10vw, 160px);
}

.ca,
.ca * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/* BEWUSST GLOBAL: nur Scroll-Verhalten fuer Anker-Links, keine Optik. Bei Bedarf entfernen. */
.ca {
    color: var(--ink);
    font-family: var(--body);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased
}

.wrap {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--pad)
}

section.ca {
    padding-block: clamp(64px, 9vw, 116px)
}

.ca p {
    color: #40382F;
    max-width: 64ch
}

.ca p+p {
    margin-top: 1.1em
}

.ca img {
    display: block
}

/* type */
.eyebrow {
    font-family: var(--head);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--clay);
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--clay);
    opacity: .6
}

.eyebrow.center {
    justify-content: center
}

.eyebrow.center::before {
    display: none
}

.ca h2 {
    font-family: var(--head);
    font-weight: 400;
    font-size: clamp(29px, 4.3vw, 50px);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-top: 18px
}

.ca h2 em {
    font-style: normal;
    font-weight: 500;
    color: var(--clay-deep)
}

.ca h3 {
    font-family: var(--head);
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 27px);
    line-height: 1.22;
    letter-spacing: -.01em
}

.lead {
    max-width: 52ch;
    margin-top: 20px
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--head);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .04em;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: .35s cubic-bezier(.2, .7, .2, 1);
    cursor: pointer;
    border: 1px solid transparent
}

.btn-primary {
    background: var(--clay);
    color: #fff
}

.btn-primary:hover {
    background: var(--clay-deep);
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--hairline)
}

.btn-ghost:hover {
    border-color: var(--clay);
    color: var(--clay-deep)
}

.btn-arrow::after {
    content: "→";
    transition: transform .35s
}

.btn-arrow:hover::after {
    transform: translateX(4px)
}

/* crease signature divider */
.crease {
    display: block;
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    opacity: .5
}

.crease path {
    stroke: var(--clay);
    stroke-width: 1;
    fill: none
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}

/* ---------- VERSTEHEN ---------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 6vw, 84px);
    align-items: center;
    margin-top: 56px
}

.split.rev {
    grid-template-columns: .95fr 1.05fr
}

.split figure {
    position: relative;
    margin: 0
}

.split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    aspect-ratio: 4/5
}

.figtag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(251, 248, 244, .92);
    backdrop-filter: blur(6px);
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--stone)
}

.inset {
    background: var(--sand);
    border-radius: 8px;
    padding: clamp(28px, 4vw, 48px);
    margin-top: 52px;
    border: 1px solid var(--hairline)
}

.inset h3 {
    color: var(--clay-deep);
    margin-top: 14px
}

.inset p {
    margin-top: 14px
}

.methods {
    margin-top: 64px
}

.methods .split img {
    aspect-ratio: 16/11;
    object-fit: contain;
    padding: 24px
}

/* ---------- TIMELINE ---------- */
.tl {
    position: relative;
    margin-top: clamp(48px, 7vw, 80px)
}

.tl-line {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: var(--rail);
    width: 2px;
    background: var(--hairline);
    border-radius: 2px
}

.tl-line .fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--clay), var(--clay-deep));
    transform-origin: top;
    transform: scaleY(0)
}

body.js .tl-line .fill {
    transform: scaleY(var(--p, 0));
    transition: transform .12s linear
}

.tl-step {
    display: grid;
    grid-template-columns: var(--rail) 1fr;
    gap: clamp(22px, 4vw, 54px);
    position: relative;
    padding-block: clamp(40px, 6vw, 68px)
}

.tl-step:not(:last-child) {
    border-bottom: 1px solid var(--hairline)
}

.tl-num {
    grid-column: 1;
    text-align: right;
    font-family: var(--head);
    font-weight: 300;
    font-size: clamp(44px, 8vw, 104px);
    line-height: .82;
    letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(169, 132, 122, .42);
    transition: color .5s, -webkit-text-stroke-color .5s;
    user-select: none;
    margin-top: -4px;
    white-space: nowrap;
    padding-right: 24px;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum"1
}

.tl-dot {
    position: absolute;
    left: calc(var(--rail) - 5px);
    top: calc(clamp(40px, 6vw, 68px) + 12px);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ivory);
    border: 1.5px solid var(--clay);
    z-index: 2;
    transition: background .4s, box-shadow .4s
}

.tl-phase {
    font-family: var(--head);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
    display: block;
    margin-bottom: 12px
}

.tl-body h3 {
    margin-bottom: 16px
}

.tl-body p {
    max-width: 60ch
}

body.js .tl-step {
    opacity: .42;
    transition: opacity .55s ease
}

body.js .tl-step.passed {
    opacity: .7
}

body.js .tl-step.active {
    opacity: 1
}

body.js .tl-step.active .tl-num,
body.js .tl-step.passed .tl-num {
    color: var(--clay-soft);
    -webkit-text-stroke-color: var(--clay)
}

body.js .tl-step.active .tl-dot,
body.js .tl-step.passed .tl-dot {
    background: var(--clay);
    box-shadow: 0 0 0 6px var(--clay-soft)
}

/* ---------- VORHER / NACHHER ---------- */
.vn-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap
}

.vn-head .txt {
    max-width: 620px
}

.vn-head .txt p {
    color: var(--stone);
    font-size: 16px;
    margin-top: 18px
}

.vn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: clamp(38px, 5vw, 56px)
}

.vn-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--sand);
    transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s
}

.vn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 48px -32px rgba(90, 60, 50, .45)
}

.vn-media {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden
}

.vn-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) saturate(.92);
    transform: scale(1.14)
}

.vn-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(251, 248, 244, .12), rgba(251, 248, 244, .42))
}

.vn-lock {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.vn-lock .badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(251, 248, 244, .78);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    transition: transform .4s
}

.vn-card:hover .vn-lock .badge {
    transform: scale(1.08)
}

.vn-lock .badge svg {
    width: 23px;
    height: 23px;
    stroke: var(--clay-deep);
    stroke-width: 1.6;
    fill: none
}

.vn-lock .tag {
    font-family: var(--head);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .22em;
    color: var(--clay-deep);
    background: rgba(251, 248, 244, .72);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 100px
}

.vn-foot {
    padding: 15px 20px;
    text-align: center;
    font-family: var(--head);
    font-weight: 500;
    font-size: 11.5px;
    letter-spacing: .16em;
    color: var(--stone);
    background: #fff;
    border-top: 1px solid var(--hairline)
}

.vn-note {
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.vn-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--clay);
    stroke-width: 1.6;
    fill: none;
    flex: none
}

.vn-note a {
    color: var(--clay-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--clay-soft)
}

.vn-note a:hover {
    border-color: var(--clay)
}

/* ---------- KOSTEN ---------- */
.panel {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    overflow: hidden;
    margin-top: clamp(40px, 6vw, 64px);
    box-shadow: 0 30px 60px -40px rgba(90, 60, 50, .25)
}

.p-left {
    padding: clamp(32px, 4.5vw, 58px)
}

.p-right {
    padding: clamp(32px, 4.5vw, 58px);
    background: linear-gradient(160deg, var(--sand), var(--sand-deep));
    border-left: 1px solid var(--hairline)
}

.p-kicker {
    font-size: 14px;
    letter-spacing: .04em;
    color: var(--stone)
}

.big-price {
    font-family: var(--head);
    font-weight: 300;
    font-size: clamp(54px, 9vw, 96px);
    line-height: .92;
    letter-spacing: -.03em;
    margin: 14px 0 4px
}

.big-price sup {
    font-size: .26em;
    color: var(--clay);
    font-family: var(--head);
    font-weight: 600;
    letter-spacing: .02em;
    margin-right: 10px;
    top: .5em;
    position: relative
}

.p-note {
    color: var(--stone);
    font-size: 15.5px;
    max-width: 42ch;
    margin-top: 6px
}

.p-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px
}

.chip {
    font-family: var(--head);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .03em;
    color: var(--clay-deep);
    background: var(--sand);
    border: 1px solid var(--hairline);
    padding: 7px 14px;
    border-radius: 100px
}

.p-hint {
    font-size: 13.5px;
    color: var(--stone);
    margin-top: 20px;
    max-width: 40ch
}

.p-right .eyebrow {
    margin-bottom: 12px
}

.p-right h3 {
    color: var(--clay-deep);
    font-size: clamp(20px, 2.4vw, 26px)
}

.rate {
    font-family: var(--head);
    font-weight: 300;
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1;
    letter-spacing: -.02em;
    margin: 22px 0 2px
}

.rate small {
    font-size: .34em;
    color: var(--stone);
    font-family: var(--head);
    font-weight: 600
}

.rate-sub {
    font-size: 13.5px;
    color: var(--stone)
}

.slider-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 28px 0 10px
}

.slider-row span:first-child {
    font-family: var(--head);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay)
}

.slider-row b {
    font-family: var(--head);
    font-weight: 500;
    font-size: 18px
}

.ca input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 26px;
    background: transparent;
    cursor: pointer
}

.ca input[type=range]::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--clay) 0 var(--val, 0%), var(--hairline) var(--val, 0%) 100%)
}

.ca input[type=range]::-moz-range-track {
    height: 3px;
    border-radius: 3px;
    background: var(--hairline)
}

.ca input[type=range]::-moz-range-progress {
    height: 3px;
    border-radius: 3px;
    background: var(--clay)
}

.ca input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--clay);
    margin-top: -10px;
    box-shadow: 0 4px 12px -2px rgba(138, 101, 91, .4);
    transition: transform .2s
}

.ca input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1)
}

.ca input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--clay);
    box-shadow: 0 4px 12px -2px rgba(138, 101, 91, .4)
}

.ticks {
    display: flex;
    justify-content: space-between;
    font-family: var(--head);
    font-size: 11px;
    color: var(--stone);
    margin-top: 2px
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: var(--stone);
    margin: 22px 0 26px;
    max-width: 46ch
}

.p-right .btn {
    width: 100%;
    justify-content: center
}

/* ---------- FAQ ---------- */
.faq-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(32px, 6vw, 80px);
    margin-top: 8px
}

.faq-head {
    position: sticky;
    top: 48px;
    align-self: start
}

.faq-head h2 {
    font-size: clamp(29px, 4.3vw, 43px);
    line-height: 1.3
}

.faq-head p {
    color: var(--stone);
    font-size: 16px;
    margin-top: 20px;
    max-width: 34ch
}

.faq-cta {
    margin-top: 30px;
    font-size: 15px
}

.faq-cta a {
    color: var(--clay-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--clay-soft);
    padding-bottom: 2px;
    transition: border-color .3s
}

.faq-cta a:hover {
    border-color: var(--clay)
}

.a-item {
    border-top: 1px solid var(--hairline)
}

.a-item:last-child {
    border-bottom: 1px solid var(--hairline)
}

.q {
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    color: var(--ink);
    font-family: var(--head);
    font-weight: 500;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.32;
    letter-spacing: -.01em;
    transition: color .3s
}

.q:hover {
    color: var(--clay-deep)
}

.q .ico {
    flex: none;
    width: 22px;
    height: 22px;
    position: relative;
    margin-top: 5px
}

.q .ico::before,
.q .ico::after {
    content: "";
    position: absolute;
    background: var(--clay);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), opacity .3s
}

.q .ico::before {
    left: 0;
    top: 10px;
    width: 22px;
    height: 2px
}

.q .ico::after {
    left: 10px;
    top: 0;
    width: 2px;
    height: 22px
}

.a-item.open .q .ico::after {
    transform: rotate(90deg);
    opacity: 0
}

.a-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .42s cubic-bezier(.2, .7, .2, 1)
}

.a-item.open .a-panel {
    grid-template-rows: 1fr
}

.a-inner {
    overflow: hidden
}

.a-inner p {
    padding: 0 46px 30px 0;
    max-width: 64ch
}

@media (prefers-reduced-motion:reduce) {
    .a-panel {
        transition: none
    }
}

/* ---------- VERTRAUEN ---------- */
.author {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center
}

.author .port {
    position: relative
}

.author img.photo {
    width: clamp(128px, 16vw, 196px);
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 20px 40px -24px rgba(90, 60, 50, .4)
}

.verified {
    position: absolute;
    right: 6px;
    bottom: 10px;
    width: 44px;
    height: 44px;
    background: var(--clay);
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 3px solid var(--sand)
}

.verified svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2.4;
    fill: none
}

.author .eyebrow {
    margin-bottom: 14px
}

.author h3 {
    margin-bottom: 16px
}

.author p {
    font-size: 15.5px;
    color: var(--stone);
    max-width: 64ch
}

.strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    margin-top: clamp(44px, 6vw, 64px);
    padding-top: clamp(36px, 5vw, 52px);
    border-top: 1px solid var(--hairline)
}

.strip .cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center
}

.strip .cell:not(:last-child) {
    border-right: 1px solid var(--hairline)
}

.strip img {
    width: 120px;
    height: 100%;
    opacity: .85
}

.strip .lbl {
    font-family: var(--head);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone)
}

.rate-num {
    font-family: var(--head);
    font-weight: 300;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1
}

.stars {
    color: var(--clay);
    letter-spacing: 2px;
    font-size: 13px
}

/* ---------- CTA BAND ---------- */
.band {
    position: relative;
    background: var(--sand-deep);
    border-radius: 16px;
    text-align: center;
    padding: clamp(56px, 8vw, 104px) var(--pad);
    overflow: hidden
}

.band svg.arc {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(760px, 90%);
    opacity: .4
}

.band svg.arc path {
    stroke: var(--clay);
    stroke-width: 1;
    fill: none
}

.band .inner {
    position: relative;
    z-index: 2
}

.band h2 {
    margin-inline: auto;
    max-width: 16ch
}

.band .btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px
}

/* ---------- CROSS-SELL ---------- */
.podcast {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
    background: var(--sand);
    border-radius: 12px;
    padding: clamp(28px, 4vw, 44px)
}

.play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--clay);
    display: grid;
    place-items: center;
    flex: none;
    transition: transform .3s
}

.podcast:hover .play {
    transform: scale(1.06)
}

.play::before {
    content: "";
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px
}

.podcast p {
    margin-top: 10px;
    font-size: 15.5px;
    color: var(--stone)
}

.related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px
}

.rcard {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    aspect-ratio: 3/4
}

.rcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1)
}

.rcard:hover img {
    transform: scale(1.05)
}

.rcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(42, 36, 32, .58))
}

.rcard span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    right: 22px;
    z-index: 2;
    color: #fff;
    font-family: var(--head);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.15;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px
}

.rcard span::after {
    content: "→";
    font-size: 18px;
    transition: transform .4s
}

.rcard:hover span::after {
    transform: translateX(4px)
}

/* ---------- KONTAKT ---------- */
.k-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(32px, 5vw, 64px);
    margin-top: clamp(40px, 6vw, 64px);
    align-items: start
}

.k-info .tel {
    font-family: var(--head);
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 38px);
    letter-spacing: -.01em;
    color: var(--ink);
    text-decoration: none;
    display: inline-block;
    margin: 6px 0 4px
}

.k-info .tel:hover {
    color: var(--clay-deep)
}

.k-info .contact-line {
    color: var(--stone);
    font-size: 15.5px;
    line-height: 1.9
}

.k-info .contact-line a {
    color: var(--clay-deep);
    text-decoration: none
}

.k-info .contact-line a:hover {
    text-decoration: underline
}

.hours {
    margin-top: 30px;
    border-top: 1px solid var(--hairline);
    padding-top: 24px
}

.hours .lbl {
    font-family: var(--head);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 14px
}

.hours .row {
    display: flex;
    justify-content: space-between;
    max-width: 320px;
    padding: 5px 0;
    font-size: 15px;
    color: #40382F;
    border-bottom: 1px dashed var(--hairline)
}

.hours .note {
    font-size: 13.5px;
    color: var(--stone);
    margin-top: 12px
}

.map {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--hairline);
    height: clamp(220px, 30vw, 300px)
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.25) contrast(1.02)
}

.form {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 30px 60px -44px rgba(90, 60, 50, .25)
}

.form h3 {
    margin-bottom: 6px
}

.form .sub {
    color: var(--stone);
    font-size: 14.5px;
    margin-bottom: 26px
}

.field {
    margin-bottom: 18px
}

.field label {
    display: block;
    font-family: var(--head);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 8px !important
}

.field input,
.field textarea {
    width: 100%;
    font-family: var(--body);
    font-weight: 500;
    font-size: 16px;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--hairline);
    border-radius: 9px;
    padding: 13px 15px;
    transition: border-color .3s, background .3s
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--clay);
    background: #fff
}

.field textarea {
    resize: vertical;
    min-height: 110px
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.anrede {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.anrede input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.anrede label {
    cursor: pointer;
    font-family: var(--head);
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    border: 1px solid var(--hairline);
    border-radius: 100px;
    padding: 9px 20px;
    margin: 0;
    transition: .25s;
    background: var(--ivory)
}

.anrede input:checked+label {
    background: var(--clay);
    color: #fff;
    border-color: var(--clay)
}

.anrede input:focus-visible+label {
    outline: 2px solid var(--clay);
    outline-offset: 2px
}

.consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 8px 0 22px;
    font-size: 13.5px;
    color: var(--stone);
    line-height: 1.55
}

.consent input {
    margin-top: 3px;
    accent-color: var(--clay);
    width: 17px;
    height: 17px;
    flex: none
}

.consent a {
    color: var(--clay-deep)
}

.form .btn {
    width: 100%;
    justify-content: center
}

.req-note {
    font-size: 12px;
    color: var(--stone);
    margin-top: 14px;
    text-align: center
}

/* ---------- DIE PRAXIS ---------- */
.praxis-top {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
    margin-top: 8px
}

.praxis-top .txt p {
    color: var(--stone);
    font-size: 16.5px;
    margin-top: 20px;
    max-width: 46ch
}

.praxis-top .accent {
    position: relative
}

.praxis-top .accent img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px
}

.praxis-top .accent figcaption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    background: rgba(251, 248, 244, .9);
    backdrop-filter: blur(6px);
    padding: 7px 14px;
    border-radius: 100px;
    font-family: var(--head);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone)
}

.praxis-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: clamp(30px, 4vw, 48px)
}

.pcard {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block
}

.pcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1)
}

.pcard:hover img {
    transform: scale(1.06)
}

.pcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 52%, rgba(42, 36, 32, .45))
}

.pcard figcaption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    font-family: var(--head);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .18em;
    text-transform: uppercase
}

/* ---------- CTA SPLIT (Beratungsfoto) ---------- */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--sand-deep);
    border-radius: 18px;
    overflow: hidden;
    min-height: clamp(360px, 42vw, 520px)
}

.cta-split .txt {
    padding: clamp(40px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cta-split .txt h2 {
    max-width: 14ch;
    margin-top: 14px;
    font-size: clamp(29px, 4.3vw, 44px)
}

.cta-split .txt p {
    color: var(--stone);
    margin-top: 16px;
    max-width: 38ch;
    font-size: 16px
}

.cta-split .btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.cta-split .media {
    position: relative;
    min-height: 280px
}

.cta-split .media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* ---------- INSTAGRAM EINBLICKE ---------- */
.ig-head {
    max-width: 640px
}

.ig-head p {
    color: var(--stone);
    margin-top: 16px;
    font-size: 16.5px
}

.ig-grid2 {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    margin-top: clamp(48px, 7vw, 72px)
}

.ig-copy p {
    color: var(--stone);
    margin-top: 18px;
    max-width: 44ch;
    font-size: 16.5px
}

.ig-hero-wrap {
    position: relative
}

.ig-hero-glow {
    position: absolute;
    inset: -46px;
    background: radial-gradient(circle at 50% 42%, rgba(169, 132, 122, .38), transparent 68%);
    filter: blur(42px);
    animation: igPulse 5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none
}

@keyframes igPulse {

    0%,
    100% {
        opacity: .6;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.07)
    }
}

.ig-hero {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 0 44px 84px -30px rgba(90, 60, 50, .5);
    cursor: pointer;
    background: #14110d;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1)
}

.ig-hero:hover {
    transform: translateY(-6px) rotate(-1.2deg)
}

.ig-slot {
    position: absolute;
    inset: 0
}

.ig-slot img,
.ig-slot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ig-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(20, 16, 12, .84));
    pointer-events: none
}

.ig-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--clay);
    display: grid;
    place-items: center;
    z-index: 3;
    transition: transform .3s
}

.ig-hero:hover .ig-play {
    transform: translate(-50%, -50%) scale(1.08)
}

.ig-play::before {
    content: "";
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px
}

.ig-quote {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 3;
    color: #fff;
    pointer-events: none
}

.ig-quote span {
    display: block;
    font-family: var(--head);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--clay-soft);
    margin-bottom: 6px
}

.ig-quote strong {
    display: block;
    font-family: var(--head);
    font-weight: 500;
    font-style: italic;
    font-size: 21px;
    line-height: 1.28
}

.ig-bubbles {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap
}

.ig-bubble {
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 78px
}

.ig-bubble-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--hairline);
    display: block;
    transition: border-color .3s, transform .3s
}

.ig-bubble:hover .ig-bubble-ring {
    border-color: var(--clay-soft)
}

.ig-bubble.active .ig-bubble-ring {
    border-color: var(--clay);
    transform: scale(1.08)
}

.ig-bubble-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block
}

.ig-bubble small {
    font-family: var(--head);
    font-size: 11px;
    font-weight: 500;
    color: var(--stone);
    text-align: center;
    line-height: 1.3;
    transition: color .3s
}

.ig-bubble.active small {
    color: var(--clay-deep)
}

/* ---------- responsive ---------- */
@media(max-width:880px) {

    .split,
    .split.rev,
    .vn-grid,
    .panel,
    .faq-grid,
    .author,
    .related,
    .podcast,
    .k-grid,
    .foot,
    .praxis-top,
    .praxis-row,
    .cta-split,
    .ig-grid2 {
        grid-template-columns: 1fr
    }

    .cta-split .media {
        min-height: 320px;
        order: -1
    }

    .split img {
        aspect-ratio: 16/11
    }

    .p-right {
        border-left: none;
        border-top: 1px solid var(--hairline)
    }

    .faq-head {
        position: static
    }

    .author {
        text-align: center;
        justify-items: center
    }

    .author .eyebrow {
        justify-content: center
    }

    .related {
        grid-template-columns: 1fr 1fr
    }

    .vn-grid {
        grid-template-columns: 1fr 1fr
    }

    .strip {
        grid-template-columns: 1fr 1fr;
        gap: 0
    }

    .strip .cell {
        padding: 24px
    }

    .strip .cell:nth-child(odd) {
        border-right: 1px solid var(--hairline)
    }

    .strip .cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--hairline)
    }

    .ig-hero {
        max-width: 340px
    }
}

@media(max-width:520px) {
    .ca {
        --rail: 58px
    }

    .related,
    .vn-grid {
        grid-template-columns: 1fr
    }

    .tl-num {
        font-size: 38px;
        padding-right: 16px
    }

    .two {
        grid-template-columns: 1fr
    }

    .strip {
        grid-template-columns: 1fr
    }

    .strip .cell {
        border-right: none !important;
        border-bottom: 1px solid var(--hairline) !important
    }

    .ca {
        font-size: 16px
    }

    .ig-bubble {
        width: 64px
    }

    .ig-bubble-ring {
        width: 54px;
        height: 54px
    }
}

.ca :focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 3px;
    border-radius: 4px
}

/* =========================================================
   Contact Form 7 – Anpassung an das Formular-Design
   (Shortcode [contact-form-7 …] im Kontakt-Code-Modul)
   ========================================================= */
.ca .form .wpcf7-form-control-wrap {
    display: block
}

.ca .form .wpcf7-form>br {
    display: none
}

/* Anrede-Pills (CF7-Radio-Markup: label umschließt input) */
.ca .anrede .wpcf7-radio {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.ca .anrede .wpcf7-list-item {
    display: block;
    margin: 0
}

.ca .anrede .wpcf7-list-item label {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    font-family: var(--head);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    border: 1px solid var(--hairline);
    border-radius: 100px;
    padding: 9px 20px;
    transition: .25s;
    background: var(--ivory)
}

.ca .anrede .wpcf7-list-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ca .anrede .wpcf7-list-item label:has(input:checked),
.ca .anrede .wpcf7-list-item.ca-checked label {
    background: var(--clay);
    color: #fff;
    border-color: var(--clay)
}

.ca .anrede .wpcf7-list-item label:has(input:focus-visible) {
    outline: 2px solid var(--clay);
    outline-offset: 2px
}

/* Datenschutz-Checkbox (CF7 Acceptance) */
.ca .consent {
    display: block
}

.ca .consent .wpcf7-list-item {
    margin: 0
}

.ca .consent .wpcf7-acceptance label {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    cursor: pointer
}

.ca .consent .wpcf7-acceptance input[type=checkbox] {
    margin-top: 3px;
    accent-color: var(--clay);
    width: 17px;
    height: 17px;
    flex: none
}

/* Senden-Button */
.ca .form .wpcf7-submit {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--head);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .04em;
    padding: 15px 30px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: var(--clay);
    color: #fff;
    cursor: pointer;
    transition: .35s cubic-bezier(.2, .7, .2, 1)
}

.ca .form .wpcf7-submit:hover:not(:disabled) {
    background: var(--clay-deep);
    transform: translateY(-2px)
}

.ca .form .wpcf7-submit:disabled {
    opacity: .55;
    cursor: not-allowed
}

.ca .form .wpcf7-spinner {
    display: block;
    margin: 12px auto 0
}

/* Validierung & Statusmeldungen */
.ca .form .wpcf7-not-valid-tip {
    display: block;
    font-family: var(--head);
    font-size: 12.5px;
    letter-spacing: .02em;
    color: #B3564A;
    margin-top: 6px
}

.ca .form input.wpcf7-not-valid,
.ca .form textarea.wpcf7-not-valid {
    border-color: #C4756A
}

.ca .form .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 13px 18px;
    border: 1px solid var(--hairline);
    border-radius: 10px;
    font-size: 14px;
    background: var(--ivory);
    color: var(--ink)
}

.ca .form .wpcf7-form.sent .wpcf7-response-output {
    border-color: #9CB89A;
    background: #EFF4EE;
    color: #3E5A3C
}

.ca .form .wpcf7-form.invalid .wpcf7-response-output,
.ca .form .wpcf7-form.failed .wpcf7-response-output,
.ca .form .wpcf7-form.spam .wpcf7-response-output {
    border-color: #C4756A;
    background: #F7ECEA;
    color: #7A3E35
}


/* =========================================================
   Mobile Feinschliff v2.1
   - Vorher/Nachher: mobil nur 1 Karte sichtbar
   - Vertrauen: Badge-Ticker mit Kantengradient (Sand)
   - Praxis & "Passend dazu": Snap-Slider mit Pfeilen
   (Ticker-Klone & Slider-Navigation erzeugt das JS)
   ========================================================= */
.ca .ca-clone {
    display: none
}

.ca .ca-slider-nav {
    display: none
}

@media(max-width:880px) {

    /* Vertrauen: durchlaufender Badge-Ticker */
    .ca .ca-ticker {
        position: relative;
        overflow: hidden;
        margin-top: clamp(44px, 6vw, 64px);
        padding-top: clamp(36px, 5vw, 52px);
        border-top: 1px solid var(--hairline)
    }

    .ca .ca-ticker::before,
    .ca .ca-ticker::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 64px;
        z-index: 2;
        pointer-events: none
    }

    .ca .ca-ticker::before {
        left: 0;
        background: linear-gradient(90deg, var(--sand), rgba(231, 222, 210, 0))
    }

    .ca .ca-ticker::after {
        right: 0;
        background: linear-gradient(270deg, var(--sand), rgba(231, 222, 210, 0))
    }

    .ca .ca-ticker .strip {
        display: flex;
        width: max-content;
        gap: 0;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        animation: ca-ticker 26s linear infinite
    }

    .ca .ca-ticker .cell {
        border: none !important;
        padding: 0 !important;
        margin-right: 56px;
        flex: none;
        min-width: 130px
    }

    .ca .ca-ticker .ca-clone {
        display: flex
    }

    .ca .ca-ticker:active .strip,
    .ca .ca-ticker:hover .strip {
        animation-play-state: paused
    }

    /* Snap-Slider: Praxis-Galerie & "Passend dazu" */
    .ca .ca-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px
    }

    .ca .ca-slider::-webkit-scrollbar {
        display: none
    }

    .ca .ca-slider>* {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center
    }

    .ca .ca-slider-nav {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 20px
    }

    .ca .ca-nav-btn {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid var(--hairline);
        background: #fff;
        color: var(--clay-deep);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .3s, border-color .3s, color .3s, opacity .3s;
        box-shadow: 0 6px 18px rgba(42, 36, 32, .07)
    }

    .ca .ca-nav-btn svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8
    }

    .ca .ca-nav-btn:hover:not(:disabled) {
        background: var(--clay);
        border-color: var(--clay);
        color: #fff
    }

    .ca .ca-nav-btn:disabled {
        opacity: .35;
        cursor: default
    }
}

@keyframes ca-ticker {
    to {
        transform: translateX(-50%)
    }
}

@media (prefers-reduced-motion:reduce) {
    .ca .ca-ticker .strip {
        animation: none
    }

    .ca .ca-ticker {
        overflow-x: auto
    }
}

@media(max-width:520px) {
    .ca .vn-card:nth-child(n+2) {
        display: none
    }
}