/* ============================================================
   AVIDITY CAPITAL — Our Process Page
   Additive stylesheet (depends on style.css + case-study.css)
   Selector prefix: .op-
   Colors: #C9A84C gold | #0D3B5E navy | #F8F6F1 light
           #071E33 dark-navy | #4A5568 gray | #E8C97A warm-gold
   ============================================================ */


/* ============================================================
   HERO
   ============================================================ */
.op-hero {
    padding: 11rem 0 6rem;
}

.op-hero-overlay {
    background: linear-gradient(
        160deg,
        rgba(7, 30, 51, 0.88) 0%,
        rgba(13, 59, 94, 0.72) 55%,
        rgba(13, 59, 94, 0.55) 100%
    );
}


/* ============================================================
   OPENING NARRATIVE
   ============================================================ */
.op-intro-section {
    background: #FFFFFF;
}

.op-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.op-narrow .body-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #4A5568;
    margin-bottom: 1.25rem;
}

.op-narrow .body-text strong {
    color: #0D3B5E;
}


/* ============================================================
   THE FIVE PHASES
   ============================================================ */
.op-phases-section {
    background: #F8F6F1;
}

.op-phases {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* individual phase */
.op-phase {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 2rem;
    padding: 2.75rem 0;
    border-bottom: 1px solid rgba(13, 59, 94, 0.1);
    position: relative;
}

.op-phase:last-child {
    border-bottom: none;
}

/* left marker column */
.op-phase-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.35rem;
}

.op-phase-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(13, 59, 94, 0.18);
    letter-spacing: -0.02em;
    user-select: none;
}

.op-phase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C9A84C;
    flex-shrink: 0;
}

/* vertical connector between phases */
.op-phase:not(:last-child) .op-phase-marker::after {
    content: '';
    display: block;
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #C9A84C 0%, rgba(201, 168, 76, 0.1) 100%);
    margin-top: 0.5rem;
}

/* right body column */
.op-phase-body {
    padding-bottom: 0.5rem;
}

.op-phase-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #0D3B5E;
    margin: 0.3rem 0 0.85rem;
    line-height: 1.25;
}

.op-phase-body h3 em {
    font-style: italic;
    color: #C9A84C;
}

.op-phase-body > p {
    font-size: 0.975rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.op-phase-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A84C;
    margin: 0 0 0.3rem;
}

.op-phase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(13, 59, 94, 0.08);
    border-left: 3px solid #C9A84C;
    border-radius: 0 6px 6px 0;
    padding: 1.5rem 1.75rem;
}

.op-phase-sub-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0D3B5E;
    margin: 0 0 0.65rem;
}

.op-phase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.op-phase-list li {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.5;
    padding-left: 1.1rem;
    position: relative;
}

.op-phase-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #C9A84C;
    font-size: 0.75rem;
}

.op-phase-sub {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4A5568;
    margin: 0;
}


/* ============================================================
   THE TEAM WE COORDINATE
   ============================================================ */
.op-team-section {
    background: #071E33;
}

.op-team-section .section-title.light {
    color: #F8F6F1;
}

.op-team-section .section-eyebrow.light {
    color: rgba(201, 168, 76, 0.85);
}

.op-team-intro {
    color: rgba(248, 246, 241, 0.72) !important;
    max-width: 600px;
    margin: 0 auto;
}

.op-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.op-team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid #C9A84C;
    border-radius: 6px;
    padding: 1.75rem 1.5rem;
    transition: background 0.25s;
}

.op-team-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.op-team-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #C9A84C;
}

.op-team-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #F8F6F1;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.op-team-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(248, 246, 241, 0.68);
    margin: 0;
}

/* info callout below the grid */
.op-team-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
}

.op-team-callout i {
    font-size: 1rem;
    color: #C9A84C;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.op-team-callout p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(248, 246, 241, 0.75);
    margin: 0;
}


/* ============================================================
   THE FIDUCIARY DIFFERENCE
   ============================================================ */
.op-fiduciary-section {
    background: #FFFFFF;
}

.op-fiduciary-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: start;
}

.op-fiduciary-grid .body-text {
    font-size: 1.02rem;
    line-height: 1.82;
    color: #4A5568;
    margin-bottom: 1.1rem;
}

.op-fiduciary-grid .body-text strong {
    color: #0D3B5E;
}

.op-fiduciary-panel {
    background: #F8F6F1;
    border: 1px solid rgba(13, 59, 94, 0.1);
    border-top: 4px solid #C9A84C;
    border-radius: 6px;
    padding: 2rem 2rem;
}

.op-fiduciary-panel h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #0D3B5E;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(13, 59, 94, 0.1);
}

.op-commitments {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.op-commitments li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.op-commitments li i {
    font-size: 1rem;
    color: #C9A84C;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.op-commitments li div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.op-commitments li strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0D3B5E;
    font-family: 'Inter', sans-serif;
}

.op-commitments li span {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #718096;
}


/* ============================================================
   WHAT WE DON'T DO
   ============================================================ */
.op-dont-section {
    background: #F8F6F1;
}

.op-dont-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.op-dont-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(13, 59, 94, 0.08);
}

.op-dont-list li:last-child {
    border-bottom: none;
}

.op-dont-list li > i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(13, 59, 94, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #0D3B5E;
    margin-top: 0.2rem;
}

.op-dont-list li > div strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.975rem;
    font-weight: 600;
    color: #0D3B5E;
    margin-bottom: 0.4rem;
}

.op-dont-list li > div p {
    font-size: 0.9rem;
    line-height: 1.72;
    color: #4A5568;
    margin: 0;
}


/* ============================================================
   RESPONSIVE — max-width: 1000px
   ============================================================ */
@media (max-width: 1000px) {

    .op-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .op-fiduciary-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .op-fiduciary-panel {
        max-width: 560px;
    }
}


/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

    .op-hero {
        padding: 9rem 0 4rem;
    }

    /* Phases: collapse marker into body header */
    .op-phase {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2rem 0;
    }

    .op-phase-marker {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .op-phase:not(:last-child) .op-phase-marker::after {
        display: none;
    }

    .op-phase-num {
        font-size: 2rem;
    }

    .op-phase-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .op-team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .op-fiduciary-panel {
        max-width: 100%;
    }

    .op-narrow .body-text {
        font-size: 0.975rem;
    }

    .op-phase-body h3 {
        font-size: 1.45rem;
    }
}


/* ============================================================
   RESPONSIVE — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {

    .op-phase-split {
        padding: 1.25rem 1.25rem;
    }

    .op-team-card {
        padding: 1.5rem 1.25rem;
    }

    .op-fiduciary-panel {
        padding: 1.5rem 1.25rem;
    }
}
