/* ── ABOUT HERO ── */
#about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem 4rem;
    background: linear-gradient(135deg, var(--pearl) 60%, rgba(26, 122, 110, .06) 100%);
    text-align: center
}

#about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem
}

#about-hero h1 em {
    color: var(--teal);
    font-style: italic
}

/* ── DOCTOR ── */
#doctor {
    background: var(--pearl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 6rem 4rem
}

.doc-image-wrap {
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px
}

.doc-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 16px 24px 0 var(--ivory), 17px 25px 0 rgba(26, 122, 110, .15), 0 40px 80px rgba(0, 0, 0, .12);
    transition: transform .5s
}

.doc-frame:hover {
    transform: perspective(800px) rotateY(-5deg) rotateX(3deg)
}

.doc-img-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(160deg, #d4ede9 0%, #b8ddd8 40%, #a0cdc7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem
}

.doc-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: rgba(26, 122, 110, .35);
    line-height: 1
}

.doc-initial-sub {
    font-size: .8rem;
    color: var(--teal);
    letter-spacing: .15em;
    text-transform: uppercase
}

.doc-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: .6
}

.doc-year-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--teal-dark);
    color: var(--white);
    padding: .8rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(15, 79, 71, .4);
    transform: translateZ(40px)
}

.doc-year-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
    line-height: 1
}

.doc-year-badge span {
    font-size: .7rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .1em;
    text-transform: uppercase
}

.doc-content .section-h2 {
    margin-bottom: .5rem
}

.doc-content p {
    font-size: .92rem;
    font-weight: 300;
    color: var(--soft);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.doc-quals {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem
}

.qual-tag {
    padding: .4rem .9rem;
    background: rgba(26, 122, 110, .08);
    border: 1px solid rgba(26, 122, 110, .15);
    border-radius: 2px;
    font-size: .75rem;
    color: var(--teal);
    letter-spacing: .05em
}

/* ── WHY US ── */
#why {
    background: var(--white);
    padding: 6rem 4rem
}

.why-header {
    text-align: center;
    margin-bottom: 3rem
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem
}

.why-card {
    padding: 2.2rem;
    border: 1px solid rgba(26, 122, 110, .1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background: var(--pearl);
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    transform-style: preserve-3d
}

.why-card:hover {
    transform: translateY(-6px) translateZ(16px);
    box-shadow: 0 20px 40px rgba(26, 122, 110, .15), 0 6px 0 var(--teal);
    border-color: var(--teal)
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(26, 122, 110, .08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1
}

.why-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block
}

.why-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: .6rem
}

.why-desc {
    font-size: .85rem;
    font-weight: 300;
    color: var(--soft);
    line-height: 1.7
}

/* ── MEDIA QUERIES ── */
@media (max-width: 992px) {
    #doctor {
        gap: 3rem;
        padding: 5rem 3rem;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #doctor {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }
    
    .doc-image-wrap {
        order: -1; /* Ensure picture is always at the top on mobile */
        margin-bottom: 2rem;
    }
    
    .doc-frame {
        max-height: 400px; /* Prevent image from taking up too much vertical space on mobile */
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
    
    #why {
        padding: 4rem 1.5rem;
    }
}