/* ==========================================================
   DR ANEE SHARMA PROFILE PAGE
   FULL UPDATED CSS
========================================================== */


/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root {
    --anee-green: #173426;
    --anee-green2: #315a3b;
    --anee-gold: #b4893a;
    --anee-cream: #f8f4ed;
    --anee-paper: #fffdf9;
    --anee-ink: #1e281f;
    --anee-muted: #687067;
    --anee-line: rgba(31, 61, 42, .13);
}


/* ==========================================================
   GENERAL
========================================================== */

.anee-page {
    background: var(--anee-paper);
    color: var(--anee-ink);
}

.anee-page * {
    box-sizing: border-box;
}


/* ==========================================================
   HERO SECTION
========================================================== */

.anee-hero {
    padding: 72px 0 76px;

    background:
        radial-gradient(
            circle at 82% 12%,
            rgba(180, 137, 58, .14),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            #fbf7f0 0%,
            #f4ede2 100%
        );

    overflow: hidden;
}


.anee-hero__grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 72px;
    align-items: center;
}


/* ==========================================================
   EYEBROW
========================================================== */

.anee-eyebrow,
.anee-section-kicker {
    display: inline-block;

    color: var(--anee-gold);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .15em;
    text-transform: uppercase;
}


/* ==========================================================
   HERO TYPOGRAPHY
========================================================== */

.anee-hero h1 {
    margin: 18px 0;

    font-family: var(--ikara-display, Georgia, serif);

    font-size: clamp(3.7rem, 6vw, 6.6rem);

    line-height: .92;

    letter-spacing: -.055em;

    color: var(--anee-green);
}


.anee-hero__role {
    margin: 0 0 12px;

    font-family: var(--ikara-display, Georgia, serif);

    font-size: clamp(1.45rem, 2.3vw, 2.15rem);

    color: #8f6828;
}


.anee-hero__credentials {
    font-size: .88rem;
    font-weight: 700;

    color: #465249;

    letter-spacing: .025em;
}


.anee-hero__lead {
    max-width: 650px;

    margin: 24px 0 30px;

    font-size: 1.12rem;

    line-height: 1.8;

    color: #535d55;
}


/* ==========================================================
   BUTTONS
========================================================== */

.anee-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.anee-btn {
    display: inline-flex;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 999px;

    align-items: center;
    justify-content: center;

    font-weight: 800;

    font-size: .88rem;

    transition: .25s;
}


.anee-btn:hover {
    transform: translateY(-2px);
}


.anee-btn--gold {
    background: var(--anee-gold);

    color: #fff;
}


.anee-btn--outline {
    border: 1px solid rgba(23, 52, 38, .2);

    color: var(--anee-green);

    background: rgba(255, 255, 255, .45);
}


.anee-btn--cream {
    background: #fff;

    color: var(--anee-green);
}


.anee-btn--ghost {
    border: 1px solid rgba(255, 255, 255, .45);

    color: #fff;
}


/* ==========================================================
   HERO PROOF / HIGHLIGHTS
========================================================== */

.anee-proof {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 42px;

    border-top: 1px solid var(--anee-line);
    border-bottom: 1px solid var(--anee-line);
}


.anee-proof div {
    padding: 18px 18px 18px 0;
}


.anee-proof div + div {
    padding-left: 18px;

    border-left: 1px solid var(--anee-line);
}


.anee-proof strong,
.anee-proof span {
    display: block;
}


.anee-proof strong {
    font-family: var(--ikara-display, Georgia, serif);

    font-size: 1.15rem;

    color: var(--anee-green);
}


.anee-proof span {
    margin-top: 3px;

    font-size: .67rem;

    color: var(--anee-muted);
}


/* ==========================================================
   HERO DOCTOR IMAGE
========================================================== */

.anee-hero__visual {
    position: relative;
}


.anee-photo-card {
    position: relative;

    border-radius: 34px;

    overflow: hidden;

    background: #dfd1ba;

    box-shadow:
        0 30px 80px rgba(54, 43, 24, .14);
}


.anee-photo-card img {
    width: 100%;

    height: 650px;

    object-fit: cover;

    object-position: top center;
}


/* ==========================================================
   DOCTOR IMAGE CAPTION
========================================================== */

.anee-photo-card__caption {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 22px;

    padding: 16px 18px;

    border-radius: 18px;

    background: rgba(255, 253, 249, .9);

    backdrop-filter: blur(12px);
}


.anee-photo-card__caption span,
.anee-photo-card__caption strong {
    display: block;
}


.anee-photo-card__caption span {
    font-size: .62rem;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: var(--anee-gold);

    font-weight: 800;
}


.anee-photo-card__caption strong {
    margin-top: 3px;

    color: var(--anee-green);

    font-size: 1rem;
}


/* ==========================================================
   FLOATING BADGE
========================================================== */

.anee-floating-badge {
    position: absolute;

    left: -38px;
    top: 15%;

    padding: 14px 18px;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 16px 40px rgba(44, 38, 27, .12);

    font-size: .7rem;

    color: var(--anee-muted);
}


.anee-floating-badge strong {
    color: var(--anee-green);

    font-size: .9rem;
}


/* ==========================================================
   STICKY JUMP MENU
========================================================== */

.anee-jump {
    position: sticky;

    top: 90px;

    z-index: 20;

    background: rgba(255, 253, 249, .92);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--anee-line);
}


.anee-jump__inner {
    display: flex;

    gap: 26px;

    overflow: auto;

    white-space: nowrap;
}


.anee-jump a {
    padding: 16px 0;

    font-size: .74rem;

    font-weight: 800;

    color: #526056;
}


.anee-jump a:hover {
    color: var(--anee-gold);
}


/* ==========================================================
   SECTION
========================================================== */

.anee-section {
    padding: 105px 0;
}


.anee-section--cream {
    background: #f8f4ed;
}


.anee-section--dark {
    background: #10291d;

    color: #fff;
}


/* ==========================================================
   ABOUT + PHILOSOPHY
========================================================== */

.anee-about,
.anee-philosophy__grid {
    display: grid;

    grid-template-columns: .78fr 1.22fr;

    gap: 100px;

    align-items: start;
}


/* ==========================================================
   SECTION HEADINGS
========================================================== */

.anee-section h2,
.anee-heading h2,
.anee-faq h2,
.anee-cta h2 {
    margin: 14px 0 0;

    font-family: var(--ikara-display, Georgia, serif);

    font-size: clamp(2.5rem, 4.5vw, 4.6rem);

    line-height: 1.02;

    letter-spacing: -.045em;

    color: var(--anee-green);
}


.anee-richtext p {
    margin: 0 0 20px;

    font-size: 1.02rem;

    line-height: 1.9;

    color: #586159;
}


.anee-heading {
    max-width: 760px;

    margin-bottom: 48px;
}


.anee-heading > p {
    margin: 18px 0 0;

    font-size: 1rem;

    line-height: 1.75;

    color: var(--anee-muted);
}


/* ==========================================================
   EXPERTISE CARDS
========================================================== */

.anee-card-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}


.anee-service-card {
    min-height: 265px;

    padding: 28px;

    border: 1px solid rgba(49, 90, 59, .12);

    border-radius: 22px;

    background: rgba(255, 255, 255, .72);

    transition: .3s;
}


.anee-service-card:hover {
    transform: translateY(-5px);

    background: #fff;

    box-shadow:
        0 18px 40px rgba(44, 38, 27, .08);
}


.anee-service-card > span {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #edf2ec;

    color: var(--anee-green);

    font-size: .7rem;

    font-weight: 800;
}


.anee-service-card h3 {
    margin: 26px 0 10px;

    font-family: var(--ikara-display, Georgia, serif);

    font-size: 1.35rem;

    color: var(--anee-green);
}


.anee-service-card p {
    margin: 0;

    font-size: .82rem;

    line-height: 1.7;

    color: var(--anee-muted);
}


/* ==========================================================
   REHABILITATION
========================================================== */

.anee-rehab__grid {
    display: grid;

    grid-template-columns: .72fr 1.28fr;

    gap: 90px;
}


.anee-rehab__sticky {
    position: sticky;

    top: 165px;

    align-self: start;
}


.anee-rehab__sticky h2 {
    margin: 14px 0 18px;

    font-family: var(--ikara-display, Georgia, serif);

    font-size: clamp(2.5rem, 4vw, 4.2rem);

    line-height: 1.03;

    color: var(--anee-green);
}


.anee-rehab__sticky p,
.anee-rehab__content > p {
    color: var(--anee-muted);

    line-height: 1.85;
}


.anee-rehab__content > p {
    font-size: 1rem;
}


/* ==========================================================
   REHABILITATION PROCESS
========================================================== */

.anee-process {
    margin: 34px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid var(--anee-line);
}


.anee-process div {
    padding: 24px 20px 24px 0;

    border-bottom: 1px solid var(--anee-line);
}


.anee-process div:nth-child(even) {
    padding-left: 24px;

    border-left: 1px solid var(--anee-line);
}


.anee-process b {
    color: var(--anee-gold);

    font-size: .68rem;
}


.anee-process strong,
.anee-process small {
    display: block;
}


.anee-process strong {
    margin: 5px 0;

    font-family: var(--ikara-display, Georgia, serif);

    font-size: 1.15rem;

    color: var(--anee-green);
}


.anee-process small {
    color: var(--anee-muted);

    font-size: .76rem;
}


/* ==========================================================
   DARK SECTION
========================================================== */

.anee-heading--light h2 {
    color: #fff;
}


.anee-heading--light > p {
    color: rgba(255, 255, 255, .64);
}


.anee-section--dark .anee-section-kicker {
    color: #d9bf86;
}


/* ==========================================================
   CONDITION CHIPS
========================================================== */

.anee-chip-grid {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.anee-chip-grid span {
    padding: 11px 15px;

    border: 1px solid rgba(255, 255, 255, .14);

    border-radius: 999px;

    background: rgba(255, 255, 255, .05);

    font-size: .78rem;

    color: rgba(255, 255, 255, .84);
}


.anee-disclaimer {
    margin: 30px 0 0;

    color: rgba(255, 255, 255, .5);

    font-size: .72rem;
}


/* ==========================================================
   EDUCATION / TIMELINE
========================================================== */

.anee-timeline {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--anee-line);
}


.anee-timeline article {
    padding: 26px 24px 10px 0;
}


.anee-timeline article + article {
    padding-left: 24px;

    border-left: 1px solid var(--anee-line);
}


.anee-timeline span,
.anee-experience-grid span {
    font-size: .64rem;

    color: var(--anee-gold);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;
}


.anee-timeline h3,
.anee-experience-grid h3 {
    margin: 10px 0 7px;

    font-family: var(--ikara-display, Georgia, serif);

    color: var(--anee-green);

    font-size: 1.25rem;
}


.anee-timeline p,
.anee-experience-grid p {
    font-size: .78rem;

    line-height: 1.65;

    color: var(--anee-muted);
}


/* ==========================================================
   EXPERIENCE GRID
========================================================== */

.anee-experience-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


.anee-experience-grid article {
    padding: 28px;

    border: 1px solid var(--anee-line);

    border-radius: 22px;

    background: #fff;
}


.anee-experience-grid__accent {
    background: var(--anee-green) !important;
}


.anee-experience-grid__accent h3 {
    color: #fff;
}


.anee-experience-grid__accent p {
    color: rgba(255, 255, 255, .7);
}


/* ==========================================================
   CERTIFICATES / AWARDS
========================================================== */

.anee-awards {
    background: #fff;
}


/*
   IMPORTANT:
   All certificate cards are now equal width.
*/

.anee-award-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 22px !important;

    align-items: stretch !important;
}


/* ==========================================================
   CERTIFICATE CARD
========================================================== */

.anee-award-grid figure,
.anee-award-grid figure:nth-child(4),
.anee-award-grid figure:nth-child(5) {
    grid-column: auto !important;

    width: 100% !important;

    margin: 0 !important;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-radius: 24px;

    background: #f7f2e9;

    border:
        1px solid
        rgba(180, 137, 58, .14);

    box-shadow:
        0 14px 34px
        rgba(52, 43, 24, .06);
}


/* ==========================================================
   VERTICAL CERTIFICATE IMAGE FRAME
========================================================== */

.anee-award-grid figure img {
    display: block !important;

    width: 100% !important;

    /*
       Same vertical frame for all certificates
    */
    height: 500px !important;

    max-width: none !important;

    /*
       COMPLETE certificate visible
       No cropping
    */
    object-fit: contain !important;

    object-position: center center !important;

    background: #f4eee5;

    padding: 14px;

    flex-shrink: 0;
}


/* ==========================================================
   CERTIFICATE CAPTION
========================================================== */

.anee-award-grid figcaption {
    flex: 1;

    padding: 18px 20px 20px !important;

    background: #fffdf9;

    border-top:
        1px solid
        rgba(180, 137, 58, .10);
}


.anee-award-grid b,
.anee-award-grid span {
    display: block;
}


.anee-award-grid b {
    font-family:
        var(--ikara-display, Georgia, serif);

    color: var(--anee-green);

    font-size: 1.05rem;

    line-height: 1.3;
}


.anee-award-grid span {
    margin-top: 6px;

    font-size: .72rem;

    line-height: 1.55;

    color: var(--anee-muted);
}


/* ==========================================================
   FAQ SECTION
========================================================== */

.anee-faq {
    background: #fbf8f2;
}


.anee-faq__grid {
    display: grid;

    grid-template-columns: .72fr 1.28fr;

    gap: 90px;
}


.anee-faq__intro {
    position: sticky;

    top: 165px;

    align-self: start;
}


.anee-faq__intro > p {
    color: var(--anee-muted);

    line-height: 1.7;
}


.anee-faq__list {
    border-top: 1px solid var(--anee-line);
}


.anee-faq details {
    padding: 22px 0;

    border-bottom: 1px solid var(--anee-line);
}


.anee-faq summary {
    position: relative;

    padding-right: 45px;

    cursor: pointer;

    list-style: none;

    font-weight: 800;

    color: var(--anee-green);
}


.anee-faq summary::-webkit-details-marker {
    display: none;
}


.anee-faq summary::after {
    content: '+';

    position: absolute;

    right: 4px;
    top: -5px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #fff;

    display: grid;

    place-items: center;

    color: var(--anee-gold);
}


.anee-faq details[open] summary::after {
    content: '−';

    background: var(--anee-green);

    color: #fff;
}


.anee-faq details p {
    margin: 0;

    padding: 14px 44px 0 0;

    color: var(--anee-muted);

    font-size: .88rem;

    line-height: 1.75;
}


/* ==========================================================
   FINAL CTA
========================================================== */

.anee-cta {
    padding: 72px 0;

    background:
        linear-gradient(
            115deg,
            #9c712d 0%,
            #b4893a 42%,
            #315a3b 130%
        );

    color: #fff;
}


.anee-cta__inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


.anee-cta span {
    font-size: .68rem;

    text-transform: uppercase;

    letter-spacing: .14em;

    font-weight: 800;
}


.anee-cta h2 {
    color: #fff;

    font-size: clamp(2.2rem, 4vw, 4rem);
}


.anee-cta p {
    margin: 12px 0 0;

    color: rgba(255, 255, 255, .78);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .anee-hero__grid,
    .anee-about,
    .anee-philosophy__grid,
    .anee-rehab__grid,
    .anee-faq__grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }


    .anee-card-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .anee-timeline {
        grid-template-columns:
            1fr 1fr;
    }


    .anee-rehab__sticky,
    .anee-faq__intro {
        position: static;
    }


    .anee-photo-card img {
        height: 600px;
    }


    /* Certificates: 2 columns */
    .anee-award-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }


    .anee-award-grid figure,
    .anee-award-grid figure:nth-child(4),
    .anee-award-grid figure:nth-child(5) {
        grid-column: auto !important;
    }


    .anee-award-grid figure img {
        height: 520px !important;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .anee-hero,
    .anee-section {
        padding: 70px 0;
    }


    .anee-hero h1 {
        font-size: 3.5rem;
    }


    .anee-photo-card img {
        height: 500px;
    }


    .anee-floating-badge {
        left: 12px;

        top: 12px;
    }


    /* ------------------------------------------------------
       Proof
    ------------------------------------------------------ */

    .anee-proof {
        grid-template-columns: 1fr;
    }


    .anee-proof div + div {
        border-left: 0;

        border-top:
            1px solid
            var(--anee-line);

        padding-left: 0;
    }


    /* ------------------------------------------------------
       Grids
    ------------------------------------------------------ */

    .anee-card-grid,
    .anee-experience-grid,
    .anee-timeline,
    .anee-process {
        grid-template-columns: 1fr;
    }


    .anee-process div:nth-child(even) {
        padding-left: 0;

        border-left: 0;
    }


    /* ------------------------------------------------------
       CERTIFICATES MOBILE
    ------------------------------------------------------ */

    .anee-award-grid {
        display: grid !important;

        grid-template-columns:
            1fr !important;

        gap: 18px !important;
    }


    .anee-award-grid figure,
    .anee-award-grid figure:nth-child(4),
    .anee-award-grid figure:nth-child(5) {
        grid-column: auto !important;

        width: 100% !important;

        margin: 0 !important;
    }


    .anee-award-grid figure img {
        width: 100% !important;

        height: 540px !important;

        object-fit: contain !important;

        object-position: center center !important;

        padding: 12px;
    }


    /* ------------------------------------------------------
       CTA
    ------------------------------------------------------ */

    .anee-cta__inner {
        display: block;
    }


    .anee-cta .anee-actions {
        margin-top: 26px;
    }


    /* ------------------------------------------------------
       STICKY JUMP MENU
    ------------------------------------------------------ */

    .anee-jump {
        top: 76px;
    }

}