/* ═══════════════════════════════════════════════════════════
   39-ambassador.css
   Markenbotschafterin-Integrations-Modul
   Mobile-First · Ophyr v37 Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── Shared Variables ─── */
:root {
    --amb-gold: #c4a169;
    --amb-gold-light: #d4bc91;
    --amb-gold-dark: #a6854e;
    --amb-bg-deep: #0a0a0a;
    --amb-bg-card: #111;
    --amb-text: rgba(255, 255, 255, 0.88);
    --amb-text-muted: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   A: STARTSEITE – Botschafterinnen-Teaser-Banner
   ═══════════════════════════════════════════════════════════ */

.amb-teaser {
    position: relative;
    overflow: hidden;
    background: var(--amb-bg-deep);
    padding: 3rem 1.25rem 2.5rem;
}

.amb-teaser__inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.amb-teaser__overtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--amb-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.amb-teaser__image {
    position: relative;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 1.75rem;
    border-radius: 0.25rem;
    overflow: hidden;
}

.amb-teaser__image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.3) contrast(1.1);
    transition: filter 0.6s ease;
}

.amb-teaser__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(196, 161, 105, 0.08) 70%,
        rgba(10, 10, 10, 0.85) 100%
    );
    pointer-events: none;
}

.amb-teaser__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--amb-text);
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
}

.amb-teaser__sig {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--amb-gold);
    margin-bottom: 0.25rem;
}

.amb-teaser__sig-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.5625rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: var(--amb-text-muted);
    margin-bottom: 1.75rem;
}

.amb-teaser__cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amb-gold);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(196, 161, 105, 0.3);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.amb-teaser__cta:hover {
    border-color: var(--amb-gold);
    background: rgba(196, 161, 105, 0.06);
}

/* ─── Goldene Trennlinie (wiederverwendbar) ─── */
.amb-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--amb-gold) 30%,
        var(--amb-gold-light) 50%,
        var(--amb-gold) 70%,
        transparent
    );
    opacity: 0.35;
}

/* ═══════════════════════════════════════════════════════════
   B: GO FOR GOLD – Medaillen-Leiste
   ═══════════════════════════════════════════════════════════ */

.amb-medals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    margin: 0 auto 1.5rem;
    max-width: 32rem;
}

.amb-medal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-align: center;
}

.amb-medal__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    position: relative;
    font-size: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.amb-medal__icon::after {
    content: '\2605';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    line-height: 1;
    color: inherit;
}

.amb-medal__icon--gold {
    background: linear-gradient(135deg, var(--amb-gold), var(--amb-gold-light));
    color: #1a1a1a;
}

.amb-medal__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--amb-text-muted);
    line-height: 1.3;
}

.amb-medal__text strong {
    color: var(--amb-text);
    font-weight: 400;
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   C: GO FOR GOLD – Erweitertes Lifestyle-Bild
   ═══════════════════════════════════════════════════════════ */

.gfg-hero-image--lifestyle {
    margin: 2rem auto;
}

.gfg-hero-image--lifestyle img {
    border-radius: 0.25rem;
}

.amb-since-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.5625rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    color: var(--amb-text-muted);
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   D: STORE – Kompakter Testimonial-Einschub
   ═══════════════════════════════════════════════════════════ */

.amb-store-trust {
    padding: 2rem 1.25rem;
    text-align: center;
    border-top: 1px solid rgba(196, 161, 105, 0.12);
    border-bottom: 1px solid rgba(196, 161, 105, 0.12);
    margin: 0 auto;
    max-width: 44rem;
}

.amb-store-trust__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--amb-text);
    margin-bottom: 0.75rem;
}

.amb-store-trust__author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5625rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--amb-gold);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   E: WIRKUNG – Athleten-Interlude (Edel Redesign)
   Integriert ins Wirkung-Zonen-System mit warmem Obsidian-Ton
   ═══════════════════════════════════════════════════════════ */

.amb-wirkung-interlude {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(
        180deg,
        #0d0c0b 0%,
        #111010 30%,
        #111010 70%,
        #0d0c0b 100%
    );
    overflow: hidden;
    grid-column: 1 / -1;
}

/* Goldene Trennlinien oben und unten */
.amb-wirkung-interlude::before,
.amb-wirkung-interlude::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 5%,
        rgba(196, 161, 105, 0.35) 25%,
        rgba(196, 161, 105, 0.6) 50%,
        rgba(196, 161, 105, 0.35) 75%,
        transparent 95%
    );
    pointer-events: none;
}

.amb-wirkung-interlude::before {
    top: 0;
}

.amb-wirkung-interlude::after {
    bottom: 0;
}

.amb-wirkung-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 36rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.amb-wirkung-overtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.58rem, 1.8vw, 0.72rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--amb-gold);
    text-transform: uppercase;
    text-align: center;
    opacity: 0.85;
}

.amb-wirkung-portrait {
    width: clamp(12rem, 35vw, 16rem);
    height: clamp(12rem, 35vw, 16rem);
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(196, 161, 105, 0.25);
    flex-shrink: 0;
    box-shadow: 0 0 4rem rgba(196, 161, 105, 0.12),
                0 0 1.5rem rgba(196, 161, 105, 0.06),
                0 0 0 1px rgba(196, 161, 105, 0.08);
}

.amb-wirkung-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) brightness(1.02);
}

.amb-wirkung-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 4.5vw, 1.65rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: rgba(253, 252, 248, 0.92);
    text-align: center;
    max-width: 30rem;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.amb-wirkung-sig {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.72rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--amb-gold);
    text-align: center;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   F: ANWENDUNG – «Mein Ritual»-Einschub (Edel Redesign)
   Konsistenter dunkler Hintergrund wie Wirkung-Interlude
   ═══════════════════════════════════════════════════════════ */

.amb-ritual {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(
        180deg,
        #0d0c0b 0%,
        #111010 30%,
        #111010 70%,
        #0d0c0b 100%
    );
    margin: clamp(2rem, 5vw, 3rem) 0 0;
    overflow: hidden;
}

/* Goldene Trennlinien */
.amb-ritual::before,
.amb-ritual::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 5%,
        rgba(196, 161, 105, 0.35) 25%,
        rgba(196, 161, 105, 0.6) 50%,
        rgba(196, 161, 105, 0.35) 75%,
        transparent 95%
    );
    pointer-events: none;
}

.amb-ritual::before { top: 0; }
.amb-ritual::after { bottom: 0; }

.amb-ritual__inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.amb-ritual__overtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.58rem, 1.8vw, 0.72rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--amb-gold);
    text-transform: uppercase;
    margin-bottom: 0;
    opacity: 0.85;
}

.amb-ritual__image {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(196, 161, 105, 0.08);
}

.amb-ritual__image img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.08) brightness(1.02);
}

.amb-ritual__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 4.5vw, 1.65rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: rgba(253, 252, 248, 0.92);
    margin-bottom: 0;
    padding: 0;
    max-width: 30rem;
    letter-spacing: 0.01em;
}

.amb-ritual__sig {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.72rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--amb-gold);
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE: Tablet & Desktop
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 48em) {

    .amb-teaser {
        padding: 4rem 2rem 3rem;
    }

    .amb-teaser__quote {
        font-size: 1.5rem;
    }

    .amb-teaser__image {
        max-width: 32rem;
    }

    .amb-medals {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
    }

    .amb-medal {
        flex-direction: row;
        gap: 0.5rem;
        text-align: left;
    }

    .amb-medal__icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .amb-medal__text {
        font-size: 0.6875rem;
    }

    .amb-store-trust {
        padding: 2.5rem 2rem;
    }

    .amb-store-trust__quote {
        font-size: 1.25rem;
    }

    .amb-wirkung-inner {
        flex-direction: row;
        gap: clamp(2.5rem, 4vw, 3.5rem);
        text-align: left;
        max-width: 48rem;
    }

    .amb-wirkung-portrait {
        width: 14rem;
        height: 14rem;
    }

    .amb-wirkung-quote {
        text-align: left;
        max-width: none;
        margin: 0;
    }

    .amb-wirkung-sig,
    .amb-wirkung-overtitle {
        text-align: left;
    }

    .amb-wirkung-interlude {
        padding: clamp(4rem, 8vw, 6rem) 2rem;
    }

    .amb-ritual {
        padding: clamp(4rem, 8vw, 6rem) 2rem;
    }

    .amb-ritual__image {
        max-width: 28rem;
    }

    .amb-ritual__quote {
        font-size: 1.5rem;
    }
}

@media (min-width: 64em) {
    .amb-teaser__quote {
        font-size: 1.625rem;
        padding: 0 2rem;
    }

    .amb-teaser__image {
        max-width: 36rem;
    }

    .amb-wirkung-portrait {
        width: 18rem;
        height: 18rem;
    }

    .amb-wirkung-quote {
        font-size: 1.5rem;
    }

    .amb-wirkung-inner {
        max-width: 54rem;
    }

    .amb-ritual__image {
        max-width: 32rem;
    }

    .amb-ritual__quote {
        font-size: 1.65rem;
    }
}
