/* ============================================================
   RJMC — Principal's Desk Page Styles  v2.0
   Matches: style.css · Red #DB1A1A · Teal #8CC7C4 · Deep #2C687B
   Fonts : Playfair Display (display) · DM Sans (body)
   Images: images/principal-desk/
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   § 1 — MINI HERO
══════════════════════════════════════════════════════════ */
.pd-mini-hero {
    position: relative;
    background-image: linear-gradient( 145deg, rgba(22,55,69,.96) 0%, rgba(44,104,123,.90) 50%, rgba(140,199,196,.25) 100% ), url('../images/rjmc-mini-banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Geometry rings */
.pd-hero-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pd-hero-geo--1 {
    top: -70px;
    right: -70px;
    width: 340px;
    height: 340px;
    border: 1.5px solid rgba(140,199,196,.13);
    animation: pdGeoSpin 24s linear infinite;
}

.pd-hero-geo--2 {
    bottom: -90px;
    left: 6%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(219,26,26,.09);
    animation: pdGeoSpin 38s linear infinite reverse;
}

.pd-hero-geo--3 {
    top: 20px;
    left: 42%;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(140,199,196,.07);
    animation: pdGeoSpin 28s linear infinite;
}

.pd-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(140,199,196,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(140,199,196,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

@keyframes pdGeoSpin {
    to {
        transform: rotate(360deg);
    }
}

.pd-hero-inner {
    position: relative;
    z-index: 2;
    padding: 70px 0 62px;
}

/* Breadcrumb */
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

    .pd-breadcrumb a {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(140,199,196,.65) !important;
        transition: color .25s;
    }

        .pd-breadcrumb a:hover {
            color: var(--teal, #8CC7C4) !important;
        }

    .pd-breadcrumb .bc-sep {
        font-size: 11px;
        color: rgba(255,255,255,.22);
    }

    .pd-breadcrumb .bc-current {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(255,255,255,.40);
    }

/* Hero body row */
.pd-hero-body {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Title row */
.pd-hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-hero-accent {
    display: inline-block;
    width: 5px;
    height: 60px;
    background: linear-gradient(180deg, var(--red, #DB1A1A) 0%, var(--red-dark, #b31212) 100%);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 22px rgba(219,26,26,.40);
}

.pd-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.3px;
    margin: 0 0 8px;
}

    .pd-hero-h1 em {
        font-style: italic;
        color: var(--teal, #8CC7C4);
    }

.pd-hero-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: .5px;
    color: rgba(255,255,255,.50);
    margin: 0;
}

/* Pill tags */
.pd-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .4px;
    color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: all .25s var(--ease, cubic-bezier(.4,0,.2,1));
}

    .pd-pill i {
        color: var(--teal, #8CC7C4);
        font-size: 12px;
    }

    .pd-pill:hover {
        background: rgba(140,199,196,.16);
        border-color: rgba(140,199,196,.32);
        color: #fff;
    }

/* ══════════════════════════════════════════════════════════
   § 2 — SHARED HELPERS  (chip / heading / divider)
══════════════════════════════════════════════════════════ */
.pd-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--deep, #2C687B);
    background: var(--deep-pale, #dbedf2);
    border: 1px solid rgba(44,104,123,.20);
    padding: 6px 16px 6px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.pd-chip--light {
    color: var(--red, #DB1A1A);
    background: var(--red-pale, #fde8e8);
    border-color: rgba(219,26,26,.22);
}

.pd-chip-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--deep, #2C687B);
    flex-shrink: 0;
}

.pd-chip--light .pd-chip-dot {
    background: var(--red, #DB1A1A);
}

.pd-sec-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    line-height: 1.22;
    margin-bottom: 12px;
}

    .pd-sec-heading em {
        font-style: italic;
        color: var(--red, #DB1A1A);
    }

.pd-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep, #2C687B), var(--teal, #8CC7C4));
    border-radius: 3px;
    margin-bottom: 30px;
}

/* ══════════════════════════════════════════════════════════
   § 3 — MAIN SECTION (profile + message)
══════════════════════════════════════════════════════════ */
.pd-main-section {
    background: var(--off-white, #FFF6F6);
}

/* ── Profile Card ─────────────────────────────────────── */
.pd-profile-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-lg, 22px);
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 12px 40px rgba(44,104,123,.15));
    position: sticky;
    top: 100px;
}

/* Banner with collage background */
.pd-profile-banner {
    position: relative;
    padding: 44px 24px 32px;
    text-align: center;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* Collage background images */
.pd-banner-collage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.pd-bc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pd-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(22,55,69,.55) 0%, rgba(22,55,69,.88) 60%, rgba(22,55,69,.97) 100% );
}

/* Photo ring */
.pd-photo-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--teal, #8CC7C4);
    padding: 4px;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 6px rgba(140,199,196,.18), 0 14px 40px rgba(0,0,0,.35);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

    .pd-photo-ring img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        background: var(--deep, #2C687B);
    }

.pd-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.pd-role {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal, #8CC7C4);
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

/* Credential strip inside banner */
.pd-cred-strip {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

    .pd-cred-strip span {
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: .4px;
        color: rgba(255,255,255,.70);
        background: rgba(140,199,196,.14);
        border: 1px solid rgba(140,199,196,.25);
        padding: 4px 12px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .pd-cred-strip span i {
            color: var(--teal, #8CC7C4);
            font-size: 11px;
        }

/* Meta list */
.pd-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pd-meta-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 22px;
        border-bottom: 1px solid var(--gray-200, #dde4e7);
        font-size: 13.5px;
        color: var(--text-body, #3d4a52);
        line-height: 1.5;
        transition: background .2s;
    }

        .pd-meta-list li:hover {
            background: var(--gray-50, #f9fafa);
        }

        .pd-meta-list li:last-child {
            border-bottom: none;
        }

.pd-meta-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--deep-pale, #dbedf2);
    border: 1px solid rgba(44,104,123,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep, #2C687B);
    font-size: 14px;
    transition: transform .3s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}

.pd-meta-list li:hover .pd-meta-icon {
    transform: scale(1.1);
}

.pd-meta-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted, #7a8c94);
    display: block;
    margin-bottom: 2px;
}

/* Card CTA footer */
.pd-card-footer {
    padding: 20px 22px;
    border-top: 1px solid var(--gray-200, #dde4e7);
    background: var(--gray-50, #f9fafa);
}

.pd-btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep, #2C687B) 0%, var(--deep-dark, #1f4e5f) 100%);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(44,104,123,.25);
    transition: all .3s var(--ease, cubic-bezier(.4,0,.2,1));
}

    .pd-btn-teal:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(44,104,123,.35);
    }

.pd-btn-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform .3s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}

.pd-btn-teal:hover .pd-btn-arrow {
    transform: translateX(4px);
}

/* ── Quote Card ─────────────────────────────────────────── */
.pd-quote-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-left: 5px solid var(--deep, #2C687B);
    border-radius: var(--radius-md, 14px);
    padding: 36px 36px 28px 32px;
    box-shadow: 0 4px 16px rgba(44,104,123,.10);
    position: relative;
    margin-bottom: 28px;
    transition: box-shadow .35s, transform .35s;
}

    .pd-quote-card:hover {
        box-shadow: 0 12px 40px rgba(44,104,123,.18);
        transform: translateY(-3px);
    }

.pd-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 1;
    color: rgba(44,104,123,.10);
    position: absolute;
    top: 8px;
    left: 14px;
    pointer-events: none;
}

.pd-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--deep, #2C687B);
    line-height: 1.80;
    position: relative;
    z-index: 1;
}

/* Author row */
.pd-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.pd-qa-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--red, #DB1A1A), transparent);
    border-radius: 2px;
    flex-shrink: 0;
}

.pd-qa-name {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
}

.pd-qa-role {
    font-size: 11.5px;
    color: var(--text-muted, #7a8c94);
    margin-left: 4px;
}

/* ── Mid Image Collage ──────────────────────────────────── */
.pd-mid-collage {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    margin: 28px 0 28px;
    height: 210px;
}

.pd-mc-cell {
    position: relative;
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44,104,123,.10);
}

    .pd-mc-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .55s;
    }

    .pd-mc-cell:hover img {
        transform: scale(1.07);
    }

.pd-mc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,55,69,.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 10px 12px;
    opacity: 0;
    transition: opacity .3s;
}

.pd-mc-cell:hover .pd-mc-overlay {
    opacity: 1;
}

.pd-mc-label {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .4px;
}

/* Right column of the collage: 3 stacked cells */
.pd-mc-col {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
}

/* Stat cell */
.pd-mc-cell--stat {
    background: linear-gradient(135deg, var(--red, #DB1A1A), var(--red-dark, #b31212));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.pd-mc-stat {
    text-align: center;
}

.pd-mc-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

    .pd-mc-stat-num sup {
        font-size: .95rem;
    }

.pd-mc-stat-lbl {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    line-height: 1.4;
    margin-top: 3px;
}

/* ── Body Text ──────────────────────────────────────────── */
.pd-body-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.88;
    color: var(--text-body, #3d4a52);
    text-align: justify;
    margin-bottom: 0;
}

.pd-para-sep {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal, #8CC7C4), transparent);
    border-radius: 2px;
    margin: 22px 0;
}

/* ══════════════════════════════════════════════════════════
   § 4 — PILLARS SECTION
══════════════════════════════════════════════════════════ */
.pd-pillars-section {
    background: var(--gray-50, #f9fafa);
    padding: 96px 0;
}

.pd-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.pd-pillar-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-lg, 22px);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(44,104,123,.07);
    transition: all .4s var(--ease, cubic-bezier(.4,0,.2,1));
}

    .pd-pillar-card:hover {
        box-shadow: 0 12px 40px rgba(44,104,123,.15);
        transform: translateY(-8px);
    }

/* Image top */
.pd-pillar-img {
    position: relative;
    height: 175px;
    overflow: hidden;
}

    .pd-pillar-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s;
    }

.pd-pillar-card:hover .pd-pillar-img img {
    transform: scale(1.08);
}

.pd-pillar-img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(22,55,69,.50) 100%);
}

/* Body */
.pd-pillar-body {
    padding: 22px 22px 20px;
}

.pd-pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep, #2C687B), var(--teal, #8CC7C4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    margin-bottom: 14px;
    margin-top: -46px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 18px rgba(44,104,123,.30);
    transition: transform .35s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}

.pd-pillar-card:hover .pd-pillar-icon {
    transform: scale(1.14) rotate(-6deg);
}

.pd-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 8px;
}

.pd-pillar-desc {
    font-size: 13px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.65;
    margin-bottom: 14px;
}

.pd-pillar-bar {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red, #DB1A1A), var(--teal, #8CC7C4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease, cubic-bezier(.4,0,.2,1));
}

.pd-pillar-card:hover .pd-pillar-bar {
    transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════
   § 5 — WHY RJMC SECTION (full-width photo bg)
══════════════════════════════════════════════════════════ */
.pd-why-section {
    position: relative;
    overflow: hidden;
}

.pd-why-bg {
    position: absolute;
    inset: 0;
}

    .pd-why-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.pd-why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 145deg, rgba(15,37,50,.97) 0%, rgba(22,55,69,.93) 50%, rgba(44,104,123,.88) 100% );
}

.pd-why-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    padding: 88px 0;
}

/* Left */
.pd-why-chip {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal, #8CC7C4);
    background: rgba(140,199,196,.12);
    border: 1px solid rgba(140,199,196,.22);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.pd-why-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

    .pd-why-heading em {
        font-style: italic;
        color: var(--teal, #8CC7C4);
    }

.pd-why-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--red, #DB1A1A), transparent);
    border-radius: 2px;
    margin-bottom: 28px;
}

/* Mini mosaic */
.pd-why-mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
    height: 200px;
}

.pd-wm-cell {
    position: relative;
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
}

    .pd-wm-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s;
    }

    .pd-wm-cell:hover img {
        transform: scale(1.07);
    }

.pd-wm-cell--large {
    border-radius: var(--radius-md, 14px);
}

.pd-wm-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22,55,69,.85), transparent);
    padding: 22px 12px 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(140,199,196,.90);
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-wm-sub {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.pd-wm-cell--stat {
    background: linear-gradient(135deg, var(--red, #DB1A1A), var(--red-dark, #b31212));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.pd-wm-stat-inner {
    text-align: center;
}

.pd-wm-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pd-wm-lbl {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.70);
    line-height: 1.4;
    margin-top: 3px;
}

/* White CTA */
.pd-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.28);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all .3s var(--ease, cubic-bezier(.4,0,.2,1));
}

    .pd-btn-white:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(140,199,196,.55);
        transform: translateY(-2px);
    }

    .pd-btn-white .pd-btn-arrow {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: transform .3s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
    }

    .pd-btn-white:hover .pd-btn-arrow {
        transform: translateX(4px);
    }

/* Right: numbered list */
.pd-why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pd-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: padding-left .3s var(--ease, cubic-bezier(.4,0,.2,1));
}

    .pd-why-item:first-child {
        padding-top: 0;
    }

    .pd-why-item:last-child {
        border-bottom: none;
    }

    .pd-why-item:hover {
        padding-left: 6px;
    }

.pd-why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(140,199,196,.18);
    line-height: 1;
    flex-shrink: 0;
    width: 42px;
    transition: color .3s;
}

.pd-why-item:hover .pd-why-num {
    color: var(--red, #DB1A1A);
}

.pd-why-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,.90);
    margin-bottom: 4px;
}

.pd-why-content p {
    font-size: 13px;
    color: rgba(255,255,255,.52);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .pd-why-inner {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .pd-mini-hero {
        background-attachment: scroll;
        min-height: 268px;
    }

    .pd-hero-h1 {
        font-size: 2.3rem;
    }

    .pd-profile-card {
        position: static;
        margin-bottom: 0;
    }

    .pd-why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 68px 0;
    }

    .pd-why-mosaic {
        height: 170px;
    }
}

@media (max-width: 767px) {
    .pd-pillars-section {
        padding: 68px 0;
    }

    .pd-hero-inner {
        padding: 54px 0 46px;
    }

    .pd-sec-heading {
        font-size: 1.95rem;
    }

    .pd-quote-card {
        padding: 26px 22px 22px 20px;
    }

    .pd-pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-mid-collage {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .pd-hero-h1 {
        font-size: 1.9rem;
    }

    .pd-hero-accent {
        height: 44px;
    }

    .pd-hero-pills {
        gap: 6px;
    }

    .pd-pill {
        font-size: 10.5px;
        padding: 5px 12px;
    }

    .pd-pillars-grid {
        grid-template-columns: 1fr;
    }

    .pd-mid-collage {
        grid-template-columns: 1fr;
        height: auto;
    }

    .pd-mc-cell {
        height: 140px;
    }

    .pd-mc-col {
        grid-template-rows: 80px 80px 80px;
    }

    .pd-why-mosaic {
        grid-template-columns: 1fr;
        height: auto;
    }

    .pd-wm-sub {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100px;
    }

    .pd-wm-cell--large {
        height: 160px;
    }

    .pd-why-num {
        font-size: 1.5rem;
        width: 30px;
    }

    .pd-why-heading {
        font-size: 1.7rem;
    }
}
