/* ============================================================
   ow.css  –  v1.0
   Ophyr Wissenschaft & Wirkung Page · Immersive Editorial
   
   ARCHITEKTUR:
   Clean Luxury · Fluid Layouts · Relative Units · Bright Editorial
   ============================================================ */

:root {
    --ow-bg-light: #1d1b19;
    /* Warmes Dunkelgrau-Braun (40% dunkler als #302d2a) */
    --ow-bg-card: #0e0d0c;
    /* 40% dunkler als #171614 */
    --ow-bg-detail: #090808;
    /* 40% dunkler als #0f0e0d */
    --ow-text-dark: #faf8f5;
    /* Edles Off-White für Überschriften */
    --ow-text-muted: rgba(250, 248, 245, 0.65);
    /* Heller Grauton für Untertitel */
    --ow-text-body: rgba(250, 248, 245, 0.75);
    /* Hellerer Fließtext für optimale Lesbarkeit */
    --ow-border: rgba(196, 161, 105, 0.25);
    /* Sichtbarerer Goldrahmen auf dunklem Grund */
    --ow-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="ow"] {
    background-color: var(--ow-bg-light) !important;
    color: var(--ow-text-body);
}

/* ── HERO SECTION ── */
.ow-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #333333;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 5rem) var(--container-padding) clamp(1.5rem, 3vw, 2rem);
}

/* Subtiler Glow */
.ow-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(20rem, 60vw, 45rem);
    height: clamp(20rem, 60vw, 45rem);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 161, 105, 0.08) 0%, rgba(196, 161, 105, 0.02) 60%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.ow-hero__overtitle {
    font-family: var(--font-accent);
    font-size: calc(var(--fs-micro, 0.72rem) * 1.15);
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    position: relative;
    z-index: 2;
}

.ow-hero__title {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ow-text-dark);
    margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
    line-height: 1.25;
    position: relative;
    z-index: 2;
    text-align: center;
}

.ow-hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--ow-text-muted);
    max-width: 36rem;
    margin: 0 auto;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

.ow-hero .home-static-quote {
    padding: 0;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    position: relative;
    z-index: 2;
}

.ow-hero .home-static-quote .quote-text {
    font-family: var(--font-editorial);
    font-style: normal;
    font-weight: 300;
    font-size: clamp(1.45rem, 3.3vw, 1.91rem);
    line-height: 1.6;
    color: var(--ow-text-dark);
    opacity: 0.85;
    letter-spacing: 0.08em;
    text-transform: none;
}

.ow-hero .home-static-quote .quote-author {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--gold, #c4a169);
    letter-spacing: 0.35em;
    margin-top: 0.8rem;
    font-weight: 100;
    text-transform: uppercase;
    display: block;
}

.ow-hero .home-static-quote .quote-line {
    width: clamp(12rem, 35vw, 25rem);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold, #c4a169) 30%, var(--gold, #c4a169) 70%, transparent 100%);
    margin: 1.8rem auto 0;
    opacity: 0.45;
}

/* ── CONTENT SECTION ── */
.ow-content {
    background: var(--ow-bg-light);
    padding: var(--section-padding, 5rem 0) var(--container-padding, 1.5rem);
    color: var(--ow-text-dark);
    position: relative;
}

.ow-content::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(196, 161, 105, 0.15) 25%, rgba(196, 161, 105, 0.25) 50%, rgba(196, 161, 105, 0.15) 75%, transparent 95%);
}

.ow-content__inner {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.ow-content__highlight {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gold-dark, #a6854e);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ow-content__text {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-body, #333333);
    margin-bottom: 2rem;
    text-align: justify;
    hyphens: auto;
}

.ow-content__text:last-child {
    margin-bottom: 0;
}

/* ── PILLARS SECTION ── */
.ow-pillars {
    background: var(--ow-bg-light);
    padding: clamp(1.5rem, 3vw, 2.5rem) var(--container-padding) clamp(4rem, 10vw, 8rem);
    position: relative;
}

.ow-pillars__container {
    max-width: 44rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 7vw, 5rem);
}

.ow-pillar-card {
    background: var(--ow-bg-card);
    border: 1px solid var(--ow-border);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(196, 161, 105, 0.04);
    transition: transform 0.6s var(--ow-ease), box-shadow 0.6s var(--ow-ease), border-color 0.6s var(--ow-ease);
}

.ow-pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 161, 105, 0.35);
    box-shadow: 0 20px 45px rgba(196, 161, 105, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.ow-pillar-card__header {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.ow-pillar-card__overtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 400;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold, #c4a169);
    margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

.ow-pillar-card__title {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ow-text-dark);
    line-height: 1.35;
    margin: 0 0 clamp(1.2rem, 3vw, 1.8rem);
    max-width: 90%;
}

.ow-pillar-card__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark, #a6854e);
}

.ow-pillar-card__intro-text {
    font-family: var(--font-accent);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    color: #ffffff;
    margin-top: clamp(1rem, 2.5vw, 1.5rem);
    text-align: left;
    max-width: 100%;
}

.ow-pillar-card__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 161, 105, 0.15) 20%, rgba(196, 161, 105, 0.15) 80%, transparent 100%);
    width: 100%;
}

.ow-pillar-card__image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.ow-pillar-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ow-ease);
    transform: scale(1.5);
    /* Startet mit 50% Zoom näher heran */
}

.ow-pillar-card.is-in-view .ow-pillar-card__image {
    animation: ophyrPillarZoom 12s ease-in-out infinite;
}

@keyframes ophyrPillarZoom {
    0% {
        transform: scale(1.5);
    }

    33.33% {
        transform: scale(1.2);
        /* Langsam herauszoomen auf 20% Zoom */
    }

    50.00% {
        transform: scale(1.2);
        /* Verweilt 2 Sekunden */
    }

    83.33% {
        transform: scale(1.5);
        /* Langsam wieder hineinzoomen auf 50% Zoom */
    }

    100% {
        transform: scale(1.5);
        /* Verweilt 2 Sekunden */
    }
}

/* MEHR Button unten */
.ow-pillar-card__more {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ebdcb9;
    /* 40% heller als #c4a169 */
    cursor: pointer;
    z-index: 10;
    transition: transform 0.4s var(--ow-ease), color 0.4s var(--ow-ease);
}

.ow-pillar-card__more-icon {
    width: clamp(78px, 15.9vw, 102px);
    /* Um 40% verkleinert für edlere Optik */
    height: clamp(78px, 15.9vw, 102px);
    /* Um 40% verkleinert für edlere Optik */
    fill: none;
    stroke: currentColor;
    /* Verwendet die hellere Textfarbe */
    stroke-width: 3.5;
    /* Beibehalten, da es sich mit der SVG-Grösse skaliert */
    opacity: 0.4;
    /* 60% transparent */
    transition: transform 0.4s var(--ow-ease), opacity 0.4s var(--ow-ease);
}

.ow-pillar-card__more:hover .ow-pillar-card__more-icon {
    transform: scale(1.15);
    opacity: 1;
    /* Vollständig deckend beim Hovern */
}

.ow-pillar-card.is-detail-open .ow-pillar-card__more-icon {
    transform: rotate(180deg);
}

.ow-pillar-card.is-detail-open .ow-pillar-card__more:hover .ow-pillar-card__more-icon {
    transform: rotate(180deg) scale(1.15);
    opacity: 1;
}

/* Detail Akkordeon (GPU-optimierter CSS Grid Transition für 120Hz/ProMotion) */
.ow-pillar-card__detail {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--ow-bg-detail);
}

.ow-pillar-card.is-detail-open .ow-pillar-card__detail {
    grid-template-rows: 1fr;
}

.ow-pillar-card__detail-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid rgba(196, 161, 105, 0);
    transition: padding 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ow-pillar-card.is-detail-open .ow-pillar-card__detail-inner {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    border-top: 1px solid rgba(196, 161, 105, 0.12);
}

.ow-pillar-card__detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ow-pillar-card.is-detail-open .ow-pillar-card__detail-section {
    opacity: 1;
    transform: translateY(0);
}

/* Gestaffelte Verzögerung (Stagger) nur beim Öffnen */
.ow-pillar-card.is-detail-open .ow-pillar-card__detail-section:nth-child(1) {
    transition-delay: 0.15s;
}

.ow-pillar-card.is-detail-open .ow-pillar-card__detail-section:nth-child(2) {
    transition-delay: 0.28s;
}

.ow-pillar-card__detail-label {
    font-family: var(--font-accent);
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold, #c4a169);
}

.ow-pillar-card__detail-body {
    font-family: var(--font-accent);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.85;
    color: #ffffff;
    margin: 0;
    text-align: left;
    hyphens: auto;
}

/* Responsive Grid/Desktop-Modell */
@media (min-width: 64rem) {
    .ow-pillars__container {
        max-width: 44rem;
        /* Hält die vertikalen Karten in einer edlen, lesbaren Breite */
    }
}

/* ═══════════════════════════════════════════════════════════
   Spezifische Overrides für das dunkle Farbschema auf ophyr_wirkung.html
   ═══════════════════════════════════════════════════════════ */

body[data-page="ow"] .home-ambassador {
    background-color: var(--ivory, #f5f0e8) !important;
    /* Exakt der helle Ton wie auf der Homepage */
    border-color: rgba(196, 161, 105, 0.15) !important;
    padding: clamp(6rem, 12vw, 9rem) clamp(2.5rem, 8vw, 6rem) !important;
    /* Sichtbar mehr Raum oben, unten und an den Seiten */
}

body[data-page="ow"] .home-ambassador__inner {
    max-width: 32rem !important;
    /* Kompakterer Block für deutlich mehr seitlichen Freiraum */
    gap: clamp(2.5rem, 6vw, 4rem) !important;
    /* Mehr Abstand zwischen Portrait und Text */
}

body[data-page="ow"] .home-ambassador__quote {
    color: #1a1a1a !important;
    /* Dunkler Zitattext wie auf der Homepage */
    line-height: 1.85 !important;
    /* Luftigere Zeilenhöhe für besseres Lesen */
    letter-spacing: 0.02em !important;
    max-width: 27rem !important;
    /* Zwingt das Zitat zu einem schmaleren, edleren Textlauf */
    margin: 0 auto !important;
    /* Zentriert das Zitat im Container */
    padding: 0 1.5rem !important;
    /* Schützt den Mindestabstand auf ganz kleinen Displays */
}

body[data-page="ow"] .home-ambassador__sig {
    color: var(--amb-gold-dark, #a6854e) !important;
    /* Goldene Signatur für hellen Hintergrund */
    margin-top: clamp(1.5rem, 3.5vw, 2.25rem) !important;
    /* Mehr Abstand zum Zitat */
    font-size: clamp(0.72rem, 1.8vw, 0.85rem) !important;
    letter-spacing: 0.3em !important;
}

body[data-page="ow"] .home-ambassador__portrait {
    max-width: clamp(14rem, 30vw, 18rem) !important; /* Bild etwas kleiner für edlere, leichtere Proportionen */
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05) !important; /* Weicher, neutraler Schatten */
}


/* Value Icons anpassen */
body[data-page="ow"] .value-icons {
    background: #ffffff !important;
    /* Exakt die helle Hintergrundfarbe wie auf der Homepage */
    border-top: none !important;
    border-bottom: none !important;
    padding: clamp(3rem, 7vw, 5rem) 0 !important;
}

body[data-page="ow"] .value-icon-text {
    color: #1a1a1a !important;
    /* Dunkler Text für optimalen Kontrast auf weißem Grund */
}

body[data-page="ow"] .value-icon-svg {
    color: var(--gold, #c4a169) !important;
}

/* ============================================================
   Startseite-Matching Typografie & Layout für die Hero-Sektion
   ============================================================ */
body[data-page="ow"] .ow-hero .store-value-container {
    width: 100%;
    box-sizing: border-box;
}

body[data-page="ow"] .ow-hero .legal-title {
    color: var(--ivory, #f5f0e8) !important;
    font-weight: 100 !important;
    margin-bottom: clamp(2rem, 4vw, 3rem) !important;
    text-align: center !important;
}

body[data-page="ow"] .ow-hero .store-highlight-statement {
    color: var(--ivory, #f5f0e8) !important;
    border-left-color: var(--gold, #c4a169) !important;
    text-align: left !important;
}

body[data-page="ow"] .ow-hero .news-body-text {
    font-family: var(--font-accent) !important;
    color: rgba(245, 240, 232, 0.8) !important;
    font-size: clamp(1.35rem, 3vw, 1.5rem) !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    text-align: left !important;
    margin-top: 0 !important;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem) !important;
}

body[data-page="ow"] .ow-hero .home-collapse-content {
    margin-top: clamp(1.8rem, 4.5vw, 3rem) !important;
}

/* CTA Button unter dem Bereich Pure Wirkung */
.ow-hero__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(2rem, 5vw, 3.2rem);
    width: 100%;
}

/* CTA Button am Ende der Säulen */
.ow-pillars__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    width: 100%;
}

/* CTA Button unter dem 4. Bereich (Value Icons) */
body[data-page="ow"] .ow-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ow-bg-light);
    padding: clamp(3.5rem, 8vw, 6rem) var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

body[data-page="ow"] .ow-cta-section .product-action {
    margin: 0;
    padding: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
}

/* ============================================================
   SAEULEN DETAILS: Interaktive Akkordeon-Stile (Unter dem Bild)
   ============================================================ */

.ritual-stage__image-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.ritual-stage__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

/* Der schwebende Trigger-Button (nur dicker Pfeil nach unten) */
.aurum-matrix-trigger {
    position: absolute;
    bottom: clamp(1.2rem, 3.5vw, 1.8rem);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(3rem, 7vw, 4rem);
    height: clamp(3rem, 7vw, 4rem);
    background: transparent;
    border: none;
    color: var(--gold, #c4a169);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    padding: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    transition: 
        color 0.4s var(--ow-ease),
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.4s var(--ow-ease);
}

.aurum-matrix-trigger:hover {
    color: var(--gold-light, #d4bc91);
    transform: translateX(-50%) translateY(5px) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(196, 161, 105, 0.45));
}

.aurum-matrix-trigger.is-active {
    transform: translateX(-50%) rotate(180deg);
}

.aurum-matrix-trigger.is-active:hover {
    transform: translateX(-50%) rotate(180deg) translateY(5px) scale(1.1);
}

.aurum-matrix-trigger-icon {
    width: clamp(1.8rem, 4vw, 2.4rem);
    height: clamp(1.8rem, 4vw, 2.4rem);
    stroke: currentColor;
    stroke-width: 3.5; /* Dicker Pfeil */
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.4s var(--ow-ease);
}

.aurum-matrix-detail {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: var(--gold, #c4a169); /* Goldener Hintergrund passend zu den Chevrons */
    border: 1px solid rgba(196, 161, 105, 0);
    border-top: none;
    margin-top: -1px; /* Verhindert sichtbare Lücken zum Bild-Container */
    font-family: var(--font-accent) !important;
    contain: layout style;
    transition: 
        grid-template-rows 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
        border-color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.aurum-matrix-detail.is-active {
    grid-template-rows: 1fr;
    border-color: rgba(14, 13, 12, 0.15); /* Subtiler dunkler Rahmen passend zum Text */
}

/* Der innere Container, der die Abstände animiert */
.aurum-matrix-detail-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 clamp(1.2rem, 3.5vw, 2.2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3.5rem);
    transition: padding 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.aurum-matrix-detail.is-active .aurum-matrix-detail-inner {
    padding: clamp(1.8rem, 4vw, 2.5rem) clamp(1.2rem, 3.5vw, 2.2rem);
}

/* Tag/Ueberschrift */
.aurum-matrix-tag {
    font-family: var(--font-accent) !important;
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    color: rgba(14, 13, 12, 0.6); /* Dunklerer Ton auf Goldgrund */
    text-transform: uppercase;
    border-bottom: 1px solid rgba(14, 13, 12, 0.12);
    padding-bottom: 0.8rem;
    margin-bottom: 0.2rem;
    display: block;
}

/* Abschnitte */
.aurum-matrix-section {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.aurum-matrix-label {
    font-family: var(--font-accent) !important;
    font-size: clamp(0.78rem, 2vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0e0d0c; /* Edles Dunkel für hohe Lesbarkeit auf Goldgrund */
    margin: 0;
}

.aurum-matrix-body {
    font-family: var(--font-accent) !important;
    font-size: clamp(1.215rem, 2.7vw, 1.35rem);
    font-weight: 300; /* Um 50% reduziertes Gewicht für einen edleren Look auf Goldgrund */
    line-height: 1.7;
    color: #0e0d0c; /* Edles Dunkel für hohe Lesbarkeit auf Goldgrund */
    margin: 0;
}

/* Erhöhung der Schriftgröße der Säulen-Detailtexte zur Angleichung an Startseite */
body[data-page="ow"] .ritual-stage__subtitle {
    font-size: clamp(1.35rem, 3vw, 1.5rem) !important;
    line-height: 1.7 !important;
}

/* ── Hintergrundfarben-Vereinheitlichung für die Wirkung-Seite (ow) ── */
body[data-page="ow"] .ritual-stages,
body[data-page="ow"] .ritual-gold-cta {
    background: #333333 !important;
}

/* Zwei CTA-Buttons vertikal stapeln */
body[data-page="ow"] .ritual-gold-cta {
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 1.8rem);
}

/* ── Ziffern 25% kleiner, Text 25% grösser in den Kacheln auf der Wirkungsseite ── */
body[data-page="ow"] .ritual-stage__instruction-number {
    width: clamp(3rem, 7.5vw, 4.125rem) !important;
    height: clamp(3rem, 7.5vw, 4.125rem) !important;
    font-size: clamp(3rem, 7.5vw, 4.125rem) !important;
}

body[data-page="ow"] .ritual-stage__instruction-text {
    font-size: clamp(1.35rem, 3vw, 1.5rem) !important;
}

/* ══════════════════════════════════════════════════════════
   MOBILE FULL-BLEED BILDER — Wirkungsseite
   Bilder füllen die gesamte Bildschirmbreite.
   Die goldene Progress-Linie läuft als Overlay darüber.
   ══════════════════════════════════════════════════════════ */
@media (max-width: 47.99rem) {
    /* Bild-Container bricht aus dem Eltern-Padding aus */
    body[data-page="ow"] .ritual-stage__image-container {
        margin-left: -4.25rem;
        margin-right: -1.25rem;
        width: calc(100% + 4.25rem + 1.25rem);
    }

    /* Kein border-radius bei Full-Bleed */
    body[data-page="ow"] .ritual-stage__image {
        border-radius: 0 !important;
    }

    /* Detail-Akkordeon ebenfalls Full-Width für Konsistenz */
    body[data-page="ow"] .aurum-matrix-detail {
        border-radius: 0;
    }

    /* ── FIX: Schrift ÜBER der Progress-Linie ──
       backface-visibility:hidden auf .reveal erstellt einen isolierten
       Stacking-Kontext, daher kann z-index allein das Problem nicht lösen.
       Lösung: Den Detailtext mit padding-left so einrücken, dass er
       rechts der Progress-Linie (left:2rem) beginnt.
       Der Container hat margin-left:-4.25rem, also braucht der Inhalt
       padding-left: ~4.25rem um wieder auf der normalen Textposition zu landen,
       PLUS ~0.75rem Extra-Abstand damit die Linie frei bleibt. */
    body[data-page="ow"] .aurum-matrix-detail-inner {
        padding-left: clamp(3rem, 7vw, 5rem) !important;
    }

    /* Progress-Linie als elegantes Overlay über dem Bild */
    body[data-page="ow"] .ritual-stages__progress-container {
        z-index: 15;
    }

    /* Indikatoren über das Linien-Overlay heben */
    body[data-page="ow"] .ritual-stage__progress-indicator {
        z-index: 16;
    }
}

