/* ==========================================================================
   Chef Details — "Team Area" profile (photo + bio) redesign. Ink + orange.
   Self-contained .chef-* namespace.
   ========================================================================== */
.chef-profile {
    --chef-gold: var(--theme-color, #FA8507);
}

/* ---- Photo side ---- */
.chef-photo {
    position: relative;
    padding: 20px;
    max-width: 560px;
}

.chef-photo-panel {
    position: absolute;
    inset: 20px;
    border-radius: 26px;
    background: radial-gradient(120% 120% at 20% 0%, #241b12 0%, #14100b 55%, #0c0a08 100%);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .55);
    z-index: 0;
}

.chef-photo-glow {
    position: absolute;
    left: -6%;
    bottom: 4%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(250, 133, 7, .3) 0%, rgba(250, 133, 7, 0) 68%);
    z-index: 0;
    pointer-events: none;
}

.chef-photo::before {
    /* gold corner frame */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border-top: 3px solid var(--chef-gold);
    border-left: 3px solid var(--chef-gold);
    border-top-left-radius: 20px;
    z-index: 2;
}

.chef-photo::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 90px;
    border-bottom: 3px solid var(--chef-gold);
    border-right: 3px solid var(--chef-gold);
    border-bottom-right-radius: 20px;
    z-index: 2;
}

.chef-photo-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .chef-photo-inner img {
        position: relative;
        max-width: 100%;
        height: auto;
        display: inline-block;
        filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .5));
    }

.chef-photo-badge {
    position: absolute;
    right: 6px;
    top: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    text-align: center;
    color: #201400;
    background: linear-gradient(135deg, #ffd488 0%, var(--chef-gold) 62%, #d97a05 100%);
    box-shadow: 0 14px 30px -8px rgba(250, 133, 7, .7);
    font-weight: 800;
    line-height: 1.1;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 8px;
    animation: chefFloat 5s ease-in-out infinite;
}

    .chef-photo-badge i { font-size: 20px; }

@keyframes chefFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---- Bio side ---- */
.chef-bio { max-width: 620px; }

.chef-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-family: var(--style-font, cursive);
    font-size: 24px;
    color: var(--chef-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.chef-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--chef-gold);
    display: inline-block;
}

.chef-name {
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 20px;
}

    .chef-name::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 70px;
        height: 3px;
        border-radius: 2px;
        background: var(--chef-gold);
    }

.chef-story {
    position: relative;
    margin: 4px 0 4px;
    padding: 6px 8px 6px 30px;
}

    .chef-story::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 6px;
        width: 3px;
        border-radius: 3px;
        background: linear-gradient(180deg, var(--chef-gold), rgba(250, 133, 7, .15));
    }

.chef-quote {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 46px;
    line-height: 1;
    color: rgba(250, 133, 7, .14);
    pointer-events: none;
}

.chef-story p {
    color: var(--body-color, #5C6574);
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 14px;
    white-space: normal;
}

    .chef-story p:last-child { margin-bottom: 0; }

.chef-lead {
    font-size: 18.5px !important;
    line-height: 1.7 !important;
    color: var(--title-color, #1F1F1F) !important;
    font-weight: 500;
}

    .chef-lead::first-letter {
        float: left;
        font-family: var(--title-font, serif);
        font-size: 58px;
        line-height: .82;
        font-weight: 700;
        color: var(--chef-gold);
        margin: 6px 12px 0 0;
    }

/* ---- Contact rows ---- */
.chef-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 30px;
}

.chef-contact-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 8px 24px -14px rgba(0, 0, 0, .3);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .chef-contact-row:hover {
        transform: translateY(-3px);
        border-color: rgba(250, 133, 7, .4);
        box-shadow: 0 16px 30px -16px rgba(250, 133, 7, .5);
    }

.chef-ic {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--chef-gold);
    background: rgba(250, 133, 7, .1);
}

.chef-contact-txt {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    color: var(--title-color, #1F1F1F);
    font-size: 16px;
    line-height: 1.2;
}

    .chef-contact-txt small {
        font-weight: 500;
        font-size: 12px;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: var(--chef-gold);
        margin-bottom: 3px;
    }

/* ---- Follow / social ---- */
.chef-follow {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.chef-follow-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    color: var(--title-color, #1F1F1F);
}

.chef-social {
    display: inline-flex;
    gap: 10px;
}

    .chef-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: var(--title-color, #1F1F1F);
        border: 1px solid rgba(0, 0, 0, .15);
        transition: all .25s ease;
    }

        .chef-social a:hover {
            background: var(--chef-gold);
            border-color: var(--chef-gold);
            color: #201400;
            transform: translateY(-3px);
        }

/* ---- "Meet Our Chef" CTA (home teaser) ---- */
.chef-morebtn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    color: #201400;
    background: linear-gradient(135deg, #ffd488 0%, var(--chef-gold) 62%, #d97a05 100%);
    box-shadow: 0 12px 28px -12px rgba(250, 133, 7, .8);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

    .chef-morebtn:hover {
        color: #201400;
        transform: translateY(-3px);
        box-shadow: 0 18px 34px -12px rgba(250, 133, 7, .9);
    }

    .chef-morebtn i { font-size: 13px; transition: transform .25s ease; }
    .chef-morebtn:hover i { transform: translateX(4px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199px) {
    .chef-name { font-size: 40px; }
}

@media (max-width: 991px) {
    .chef-photo { margin: 0 auto; }
    .chef-bio { max-width: 100%; }
}

@media (max-width: 575px) {
    .chef-photo { padding: 14px; }
        .chef-photo::before, .chef-photo::after { width: 64px; height: 64px; }
    .chef-photo-badge { width: 88px; height: 88px; font-size: 12px; top: 24px; }
        .chef-photo-badge i { font-size: 17px; }
    .chef-eyebrow { font-size: 21px; }
    .chef-contact-row { width: 100%; }
    .chef-follow { justify-content: center; }
    .chef-morebtn { margin-left: 0; width: 100%; justify-content: center; }
}
