/* ==========================================
   L'OPERA ROYAL - ABOUT CHEF
   Premium chef section
   Light background / Navy text / Gold accents
   No gradients / No black / No blur
========================================== */

/*
|--------------------------------------------------------------------------
| Expected image from PHP
|--------------------------------------------------------------------------
| Location: assets/images/about/
| File name: chef-sebastian.jpg
| Replace with: Portrait or kitchen action photo of Chef Sebastian.
|--------------------------------------------------------------------------
*/

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

.royal-about-chef {
    position: relative;
    isolation: isolate;

    width: 100%;

    padding: 108px 0 116px;

    color: var(--royal-navy);
    background: var(--royal-white);

    overflow: hidden;
}

.royal-about-chef::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 0;
    z-index: 0;

    width: min(1180px, 92%);
    height: 1px;

    background: rgba(var(--royal-gold-rgb), 0.34);

    transform: translateX(-50%);

    pointer-events: none;
}

/* ==========================================
   GRID
========================================== */

.royal-about-chef__grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(56px, 6vw, 82px);

    align-items: center;
}

/* ==========================================
   CONTENT
========================================== */

.royal-about-chef__content {
    position: relative;
}

.royal-about-chef .royal-kicker {
    margin: 0 0 16px;

    color: var(--royal-gold);

    font-family: var(--royal-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.royal-about-chef__title {
    max-width: 560px;
    margin: 0;

    color: var(--royal-navy);

    font-family: var(--royal-font-heading);
    font-size: clamp(40px, 4.6vw, 70px);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.04;
    text-transform: uppercase;
}

.royal-about-chef__title::after {
    content: "";

    width: 88px;
    height: 1px;
    margin: 26px 0 0;

    display: block;

    background: var(--royal-gold);
}

.royal-about-chef__text {
    max-width: 620px;
    margin-top: 34px;

    color: rgba(var(--royal-navy-rgb), 0.78);

    font-family: var(--royal-font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.86;
}

.royal-about-chef__text p {
    margin: 0 0 20px;
}

.royal-about-chef__text p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   MEDIA
========================================== */

.royal-about-chef__media {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background: var(--royal-navy);
    border: 1px solid rgba(var(--royal-gold-rgb), 0.34);

    box-shadow:
        0 30px 82px rgba(var(--royal-navy-rgb), 0.16),
        0 0 0 12px rgba(var(--royal-white-rgb), 0.74);
}

.royal-about-chef__media::before {
    content: "";

    position: absolute;
    inset: 20px;
    z-index: 4;

    border: 1px solid rgba(var(--royal-white-rgb), 0.34);

    pointer-events: none;
}

.royal-about-chef__media::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    background: rgba(var(--royal-navy-rgb), 0.06);

    pointer-events: none;
}

.royal-about-chef__image {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image: var(--royal-about-chef-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.01);

    transition:
        transform 900ms ease,
        filter 900ms ease;
}

.royal-about-chef.has-fallback-background .royal-about-chef__image {
    display: none;
}

.royal-about-chef__media:hover .royal-about-chef__image {
    transform: scale(1.035);
    filter: saturate(1.03) contrast(1.02);
}

/* ==========================================
   CHEF SIGNATURE
   Transparent label with white writing
   No blur
========================================== */

.royal-about-chef__signature {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 5;

    width: min(100% - 68px, 280px);
    padding: 14px 18px 13px;

    background: rgba(var(--royal-navy-rgb), 0.28);
    border: 1px solid rgba(var(--royal-gold-rgb), 0.42);

    box-shadow: 0 14px 34px rgba(var(--royal-navy-rgb), 0.12);
}

.royal-about-chef__signature::before {
    content: "";

    width: 46px;
    height: 1px;
    margin: 0 0 9px;

    display: block;

    background: var(--royal-gold);
}

.royal-about-chef__signature-name {
    display: block;

    color: var(--royal-white);

    font-family: var(--royal-font-script);
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;

    text-shadow: 0 10px 26px rgba(var(--royal-navy-rgb), 0.34);
}

.royal-about-chef__signature-role {
    margin-top: 7px;

    display: block;

    color: rgba(var(--royal-white-rgb), 0.86);

    font-family: var(--royal-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ==========================================
   FALLBACK LOGO
========================================== */

.royal-about-chef__fallback-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;

    width: clamp(180px, 24vw, 340px);
    height: auto;

    display: block;

    opacity: 0.32;
    filter: drop-shadow(0 18px 38px rgba(var(--royal-navy-rgb), 0.28));

    transform: translate(-50%, -50%);
}

.royal-about-chef.has-background-image .royal-about-chef__fallback-logo {
    display: none;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1024px) {
    .royal-about-chef {
        padding: 92px 0 102px;
    }

    .royal-about-chef__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .royal-about-chef__content {
        max-width: 760px;
        margin-inline: auto;

        text-align: center;
    }

    .royal-about-chef__title,
    .royal-about-chef__text {
        margin-inline: auto;
    }

    .royal-about-chef__title::after {
        margin-inline: auto;
    }

    .royal-about-chef__media {
        min-height: 540px;
    }

    .royal-about-chef__signature {
        left: 28px;
        bottom: 28px;

        width: min(100% - 56px, 270px);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .royal-about-chef {
        padding: 74px 0 82px;
    }

    .royal-about-chef__grid {
        gap: 42px;
    }

    .royal-about-chef .royal-kicker {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .royal-about-chef__title {
        font-size: clamp(34px, 10vw, 50px);
        line-height: 1.08;
    }

    .royal-about-chef__title::after {
        margin-top: 22px;
    }

    .royal-about-chef__text {
        margin-top: 28px;

        font-size: 14px;
        line-height: 1.78;
    }

    .royal-about-chef__text p {
        margin-bottom: 18px;
    }

    .royal-about-chef__media {
        min-height: 420px;

        box-shadow:
            0 24px 58px rgba(var(--royal-navy-rgb), 0.13),
            0 0 0 8px rgba(var(--royal-white-rgb), 0.72);
    }

    .royal-about-chef__media::before {
        inset: 14px;
    }

    .royal-about-chef__signature {
        left: 18px;
        bottom: 18px;

        width: min(100% - 36px, 250px);
        padding: 13px 15px 12px;

        background: rgba(var(--royal-navy-rgb), 0.28);

        text-align: left;
    }

    .royal-about-chef__signature::before {
        width: 42px;
        margin-bottom: 8px;
    }

    .royal-about-chef__signature-name {
        color: var(--royal-white);

        font-size: clamp(25px, 8vw, 32px);
    }

    .royal-about-chef__signature-role {
        margin-top: 6px;

        color: rgba(var(--royal-white-rgb), 0.86);

        font-size: 8px;
        letter-spacing: 0.16em;
    }

    .royal-about-chef__fallback-logo {
        width: clamp(150px, 46vw, 230px);
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {
    .royal-about-chef__media {
        min-height: 360px;
    }

    .royal-about-chef__signature {
        left: 16px;
        bottom: 16px;

        width: min(100% - 32px, 235px);
    }
}