/* ============================================
   WORK-DETAIL.CSS — /work/<slug>.html
   Aus work.css herausgelöst; das Portfolio-Grid der Startseite liegt in
   portfolio.css. Diese Datei wird von index.html NICHT geladen.
   ============================================ */

/* ============================================
   DETAIL PAGES - /work/<slug>.html
   ============================================ */

.work-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   V2 DETAIL PAGES — Award-Winning Layout
   ============================================ */

/* ---- Container ---- */
.work-detail--v2 {
    max-width: 1200px;
    padding: 0 2.5rem;
}

.wd-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Section Label (reusable) ---- */
.wd-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 2rem;
    font-family: 'Geist', 'Inter', monospace;
}

/* ============================================
   2. CONTEXT STRIP
   ============================================ */
.wd-context {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wd-context--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wd-context--centered > div {
    max-width: 800px;
    width: 100%;
}

.wd-context__text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 480px;
}

.wd-context--centered .wd-context__text {
    max-width: 100%;
}

.wd-context__aside {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

/* ============================================
   3. TENSION
   ============================================ */
.wd-tension {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 0;
    align-items: start;
}

.wd-tension__text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wd-tension__text li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 1rem;
    position: relative;
}

.wd-tension__text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple-accent);
}

.wd-tension__images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wd-tension__img-stack {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-tension__img {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-tension__img-stack .wd-tension__img {
    width: 100%;
    border: none;
    margin: 0 !important;
    padding: 0;
}

.wd-tension__img-stack .wd-tension__img--bw {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    width: 100%;
}

.wd-tension__img-stack .wd-tension__img--color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.1s ease-out;
    margin: 0 !important;
}

.wd-tension__img-stack .wd-tension__img img {
    width: 100%;
    height: auto;
    display: block;
}

.wd-tension__img-stack .wd-tension__img--color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wd-tension__img:nth-child(2) {
    margin-left: 2rem;
}

.wd-tension__img:nth-child(3) {
    margin-left: 1rem;
}

.wd-tension__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Placeholder (empty image state) ---- */
.wd-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #08080d 0%, #0d0b14 50%, #08080d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.wd-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(142, 68, 255, 0.02) 10px,
        rgba(142, 68, 255, 0.02) 20px
    );
}

.wd-placeholder__label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.3;
    z-index: 1;
}

/* ============================================
   4. EXPLORATION
   ============================================ */
.wd-exploration {
    padding: 5rem 0;
}

.wd-exploration__row {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
}

.wd-exploration__row::-webkit-scrollbar {
    display: none;
}

.wd-exploration__item {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.wd-exploration__item img {
    width: 100%;
    height: auto;
    display: block;
}

.wd-exploration__tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

/* ============================================
   5. DECISION
   ============================================ */
.wd-decision {
    padding: 6rem 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.wd-decision__text {
    font-family: 'Geist', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.wd-decision__visual {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-decision__visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   WD-SLIDER — Editorial fade slider with arrows + dots
   Used in Entrel detail page Decision section.
   ============================================ */
.wd-slider {
    position: relative;
    isolation: isolate;
}

.wd-slider__track {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 1080;
}

.wd-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0.6s;
}

.wd-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0s;
}

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

/* Arrows — circular pill, hairline cream border, hover purple-accent */
.wd-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(245, 241, 232, 0.25);
    background: rgba(5, 5, 9, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(245, 241, 232, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

.wd-slider__arrow--prev { left: 1rem; }
.wd-slider__arrow--next { right: 1rem; }

.wd-slider__arrow:hover {
    background: rgba(142, 68, 255, 0.5);
    border-color: rgba(142, 68, 255, 0.7);
    color: #fff;
}

.wd-slider__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.wd-slider__arrow--next:hover { transform: translateY(-50%) translateX(3px); }

.wd-slider__arrow:focus-visible {
    outline: 2px solid var(--purple-accent);
    outline-offset: 3px;
}

/* Dots — bottom-center pill row */
.wd-slider__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 2;
}

.wd-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(245, 241, 232, 0.4);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease,
                border-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.wd-slider__dot:hover {
    border-color: rgba(245, 241, 232, 0.7);
}

.wd-slider__dot.is-active {
    width: 28px;
    border-radius: 4px;
    background: var(--purple-accent);
    border-color: var(--purple-accent);
}

.wd-slider__dot:focus-visible {
    outline: 2px solid var(--purple-accent);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .wd-slider__arrow {
        width: 40px;
        height: 40px;
    }
    .wd-slider__arrow--prev { left: 0.6rem; }
    .wd-slider__arrow--next { right: 0.6rem; }
    .wd-slider__dots { bottom: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
    .wd-slider__slide,
    .wd-slider__arrow,
    .wd-slider__dot {
        transition: none;
    }
}

/* ============================================
   6. RESULT
   ============================================ */
.wd-result {
    padding: 5rem 0;
}

.wd-result__hero-screen {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-result__hero-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.wd-result__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.wd-result__grid-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-result__grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.wd-result__caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.6;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   7. OUTCOME
   ============================================ */
.wd-outcome {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wd-outcome__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wd-outcome__item {
    padding: 2rem 0;
}

.wd-outcome__stat {
    font-family: 'Geist', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.wd-outcome__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    opacity: 0.7;
}

/* ============================================
   8. NEXT ITERATION
   ============================================ */
.wd-next {
    padding: 5rem 0;
    max-width: 600px;
}

.wd-next__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wd-next__list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 1.5rem;
    position: relative;
}

.wd-next__list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--purple-accent);
    opacity: 0.6;
}

/* ============================================
   DAY&NITE HERO — Layered Parallax Backgrounds
   ============================================ */

/* DAY&NITE HERO — Struktur jetzt in styles/work-hero.css. */


/* ============================================
   DAY&NITE BRANDING SECTION
   ============================================ */

.dn-branding {
    padding: 6rem 0;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.dn-branding::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(142, 68, 255, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.dn-branding__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.dn-branding__icon {
    width: 180px;
    height: auto;
    opacity: 0.9;
}

.dn-branding__logo {
    max-width: 420px;
    width: 60%;
    height: auto;
    opacity: 0.92;
    transition: opacity 0.3s ease;
}

.dn-branding__logo:hover {
    opacity: 1;
}

/* ============================================
   9. OUTRO
   ============================================ */
.wd-live-link {
    text-align: center;
    padding: 2rem 0;
}

.wd-live-link__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 2rem;
    border: 1px solid var(--purple-primary);
    border-radius: 6px;
    color: var(--purple-accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.wd-live-link__btn:hover {
    background: rgba(142, 68, 255, 0.12);
    color: #fff;
}

.wd-outro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-outro__back,
.wd-outro__next {
    font-size: 0.9rem;
    color: var(--purple-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.wd-outro__back:hover,
.wd-outro__next:hover {
    color: var(--purple-light);
    letter-spacing: 0.02em;
}

.wd-outro__next {
    text-align: right;
}

.wd-outro__next-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

/* ---- CTA Button on detail pages ---- */
.wd-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 14px rgba(142, 68, 255, 0.3);
}

.wd-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 255, 0.45);
}

/* SCROLL REVEAL — .wd-reveal / .wd-reveal-stagger entfernt.
   Die Detail-Seiten nutzen jetzt die .reveal-*-Utilities aus effects.css,
   die js/scroll.js beobachtet. Vorteile gegenüber der alten Lösung: zwei
   Sicherheitsnetze (fehlender IntersectionObserver, Observer feuert nie) und
   eine prefers-reduced-motion-Behandlung, die hier beide fehlten. */

/* ============================================
   V2 RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 768px) {
    .work-detail--v2 {
        padding: 0 1.5rem;
    }



    .wd-context {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 0;
    }

    .wd-context--centered {
        padding: 4rem 0;
    }

    .wd-context--centered > div {
        max-width: 100%;
    }

    .wd-context__aside {
        display: none;
    }

    .wd-tension {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 0;
    }

    .wd-tension__img:nth-child(2),
    .wd-tension__img:nth-child(3) {
        margin-left: 0;
    }

    .wd-exploration__item {
        width: 220px;
    }

    .wd-result__grid {
        grid-template-columns: 1fr;
    }

    .wd-outcome__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wd-outro {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .wd-outro__next {
        text-align: center;
    }
}

/* ============================================
   V2 RESPONSIVE - Small Mobile
   ============================================ */
@media (max-width: 480px) {
    .work-detail--v2 {
        padding: 0 1rem;
    }


    .wd-exploration__item {
        width: 180px;
    }
}


/* EDEN01 HERO — Struktur jetzt in styles/work-hero.css. */



/* ENTREL HERO — vollständig nach styles/work-hero.css gewandert. */




/* BAILA VERDE HERO — Struktur jetzt in styles/work-hero.css. */


/* Baila Verde — Bottom CTA */
.wd-cta-bailaverde {
    display: flex;
    justify-content: center;
    padding: 2rem 0 3rem;
}

.wd-cta-bailaverde__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 234, 216, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: #f4ead8;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-cta-bailaverde__btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.wd-cta-bailaverde__btn:hover {
    background: #4a8f6a;
    border-color: #4a8f6a;
    color: #f4ead8;
}

.wd-cta-bailaverde__btn:hover svg {
    transform: translateX(4px);
}


/* ==========================================================
   BRANDING SECTION
   ========================================================== */

.wd-branding {
    padding: 4rem 0 2rem;
}

.wd-branding__text {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin-bottom: 2.5rem;
}

.wd-branding__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-branding__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.wd-branding__logo {
    position: relative;
    z-index: 2;
    width: clamp(140px, 25vw, 280px);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(217, 122, 48, 0.35));
}

@media (max-width: 768px) {
    .wd-branding__visual {
        aspect-ratio: 4 / 3;
    }
    .wd-branding__logo {
        width: clamp(120px, 40vw, 200px);
    }
}


/* ==========================================================
   SHOWCASE SECTION (Reusable)
   ========================================================== */

.wd-showcase {
    padding: 4rem 0 2rem;
}

.wd-showcase .wd-label {
    display: block;
    margin-bottom: 2rem;
}

.wd-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.wd-showcase__item {
    overflow: hidden;
    border-radius: 12px;
}

.wd-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
}

.wd-showcase__item:hover img {
    transform: scale(1.03);
}

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

/* ==========================================================
   BAILA VERDE CASE STUDY — EDITORIAL FLOW
   Mirrors live BailaVerdeNeu typographic + structural language.
   All selectors scoped to .bv-* to keep separate from generic
   case-study CSS (.wd-context, .wd-tension, etc.).
   ========================================================== */

:where(.bv-brief, .bv-journey, .bv-identity, .bv-craft, .bv-live, .bv-final) {
    color: #f4ead8;
}

/* ---- BV Label (overline, used across all sections) ---- */
.bv-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(217, 122, 48, 0.9);  /* amber */
    margin-bottom: 1.5rem;
}

.bv-label--centered {
    display: block;
    text-align: center;
}

/* ---- 2. BRIEF — Asymmetric 2-col editorial ---- */
.bv-brief {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(5rem, 14vw, 11rem) clamp(1.5rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.bv-brief__col-left {
    position: sticky;
    top: 6rem;
    padding-top: 0.6rem;
}

.bv-brief__lede {
    font-family: var(--font-display, 'Fraunces', serif);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.32;
    letter-spacing: -0.012em;
    color: rgba(244, 234, 216, 0.86);
    max-width: 62ch;
}

@media (max-width: 768px) {
    .bv-brief {
        grid-template-columns: 1fr;
        padding-top: clamp(3rem, 10vw, 5rem);
        padding-bottom: clamp(3rem, 10vw, 5rem);
    }
    .bv-brief__col-left { position: static; padding-top: 0; }
    .bv-brief__lede { font-size: clamp(1.25rem, 5vw, 1.75rem); }
}

/* ---- 3. JOURNEY — Three moments with alternating media ---- */
.bv-journey {
    max-width: 1400px;
    margin: clamp(2rem, 8vw, 6rem) auto 0;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    position: relative;
}

.bv-journey__intro {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 7rem);
}

.bv-journey__headline {
    font-family: var(--font-display, 'Fraunces', serif);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #f4ead8;
    margin: 0;
}

.bv-journey__headline em {
    font-style: italic;
    font-weight: 400;
    color: #d97a30;
}

/* ---- BV Moment ---- */
.bv-moment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    padding: clamp(3rem, 8vw, 7rem) 0;
    position: relative;
}

.bv-moment__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
}

.bv-moment__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05) saturate(1.1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bv-moment:hover .bv-moment__media img {
    transform: scale(1.03);
}

.bv-moment__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bv-moment__number {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 234, 216, 0.55);
}

.bv-moment__word {
    font-family: var(--font-display, 'Fraunces', serif);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin: 0;
}

.bv-moment__word em {
    font-style: italic;
    font-weight: 400;
}

/* Color per moment (amber / rose / sand) — matches live site */
.bv-moment--01 .bv-moment__word { color: #d97a30; }
.bv-moment--02 .bv-moment__word { color: #b94a5d; }
.bv-moment--03 .bv-moment__word { color: #e9d8b6; }

.bv-moment__subline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(244, 234, 216, 0.72);
    max-width: 38ch;
    margin: 0;
}

@media (max-width: 768px) {
    .bv-moment {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: clamp(2rem, 8vw, 4rem) 0;
    }
    /* On mobile, media always above content */
    .bv-moment__media {
        order: -1;
        aspect-ratio: 5 / 4;
    }
    .bv-moment--02 .bv-moment__media { order: -1; }
}

/* ---- 4. IDENTITY — Icon + Wordmark stacked ---- */
.bv-identity {
    max-width: 900px;
    margin: clamp(4rem, 10vw, 8rem) auto 0;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    text-align: center;
}

.bv-identity__mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    border-top: 1px solid rgba(244, 234, 216, 0.1);
    border-bottom: 1px solid rgba(244, 234, 216, 0.1);
}

.bv-identity__icon {
    width: clamp(72px, 10vw, 120px);
    height: auto;
    filter: drop-shadow(0 0 32px rgba(74, 143, 106, 0.35));
}

.bv-identity__wordmark {
    width: clamp(140px, 18vw, 240px);
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(12, 10, 8, 0.6));
}

.bv-identity__text {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.5;
    color: rgba(244, 234, 216, 0.72);
    max-width: 48ch;
    margin: 0 auto;
}

/* ---- 5. CRAFT — What we built (with Icon as anchor) ---- */
.bv-craft {
    max-width: 900px;
    margin: clamp(5rem, 12vw, 10rem) auto 0;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    text-align: center;
}

.bv-craft__icon {
    display: block;
    width: clamp(48px, 6vw, 72px);
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0.55;
}

.bv-craft__text {
    font-family: var(--font-display, 'Fraunces', serif);
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: rgba(244, 234, 216, 0.82);
    max-width: 58ch;
    margin: 0 auto;
}

/* IMPRESSIONS-Streifen entfernt — der Abschnitt ist aus work/baila-verde.html
   herausgenommen worden. */


/* ---- 7. LIVE — Stats ---- */
.bv-live {
    max-width: 1200px;
    margin: clamp(5rem, 12vw, 10rem) auto 0;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    text-align: center;
}

.bv-live__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    margin-top: 1rem;
    border-top: 1px solid rgba(244, 234, 216, 0.12);
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.bv-live__item {
    text-align: left;
}

.bv-live__stat {
    font-family: var(--font-display, 'Fraunces', serif);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: #f4ead8;
    margin-bottom: 0.75rem;
}

.bv-live__desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.55;
    color: rgba(244, 234, 216, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .bv-live__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ---- 8. FINAL — Icon + tagline + CTA ---- */
.bv-final {
    max-width: 900px;
    margin: clamp(5rem, 12vw, 10rem) auto clamp(2rem, 6vw, 5rem);
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    position: relative;
}

.bv-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(74, 143, 106, 0.15) 0%, rgba(217, 122, 48, 0.06) 45%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.bv-final__icon {
    display: block;
    width: clamp(80px, 12vw, 140px);
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0.85;
}

.bv-final__tagline {
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.3;
    color: rgba(244, 234, 216, 0.85);
    margin: 0 0 2.5rem;
    letter-spacing: -0.01em;
}

.bv-final__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 234, 216, 0.85);
    background: transparent;
    color: #f4ead8;
    font-family: var(--font-display, 'Fraunces', serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bv-final__btn svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.bv-final__btn:hover {
    background: #4a8f6a;
    border-color: #4a8f6a;
    color: #f4ead8;
}

.bv-final__btn:hover svg {
    transform: translateX(6px);
}

/* ---- Hide old wd-context / wd-tension / wd-decision / wd-showcase / wd-outcome / wd-branding / wd-cta-bailaverde elements on baila-verde page ---- */
/* (kept for other case studies but unused here since we replaced the structure) */
