/* --- Ophyr Hero Section --- */
.ophyr-hero {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    max-width: 75rem;
    margin: 0 auto;
}

.ophyr-hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ophyr-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ophyr-hero-content {
    padding: clamp(3rem, 6vw, 5rem) 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
}

.ophyr-hero-content h2 {
    font-size: var(--fs-display);
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ophyr-hero-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.ophyr-actions {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.btn-secondary {
    display: inline-block;
    padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 5vw, 2.5rem);
    background-color: var(--ivory);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--fs-button);
    text-align: center;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
    will-change: transform;
    /* border-color, color, background-color, box-shadow sind Main-Thread-Properties → kein will-change nötig */
}

.btn-secondary:active {
    transform: scale(0.98) translateZ(0);
}

.btn-secondary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
    box-shadow: 0 4px 15px rgba(196, 161, 105, 0.2);
}

.ophyr-quote {
    font-size: var(--fs-body-lg);
    font-weight: 300;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

/* Desktop overrides for Ophyr Hero */
@media (min-width: 64rem) {
    .ophyr-hero {
        flex-direction: row;
        align-items: center;
        gap: 8vw;
        padding: 0 var(--container-padding);
    }

    .ophyr-hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        overflow: hidden;
    }

    .ophyr-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
    }

    .ophyr-hero-content {
        flex: 1;
        padding: 5rem 0;
    }

    .ophyr-hero-content h2 {
        font-size: var(--fs-h1);
    }

    .ophyr-actions {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .ophyr-quote {
        margin-top: auto;
        font-size: var(--fs-h3);
    }
}
