/* ============================================
   OHC — Designed page sections (Elementor HTML)
   Works with app.css tokens: --navy, --gold, etc.
   ============================================ */

.ohc-page section.ohc-block {
    padding: 5rem 0;
}
.ohc-page section.ohc-block--tight {
    padding: 3.5rem 0;
}
.ohc-page section.ohc-block--band {
    background: linear-gradient(160deg, var(--surface-blush) 0%, var(--cream) 48%, #f8f4fc 100%);
    color: var(--text-dark);
    border-top: 1px solid rgba(67, 29, 83, 0.06);
    border-bottom: 1px solid rgba(67, 29, 83, 0.06);
}
.ohc-page section.ohc-block--cream {
    background: var(--cream);
}
.ohc-page section.ohc-block--white {
    background: var(--white);
}

/* Section intro */
.ohc-intro {
    max-width: 720px;
    margin-bottom: 3rem;
}
.ohc-intro.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.ohc-intro h2 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.ohc-intro h2 em {
    color: var(--navy);
    font-style: italic;
}
.ohc-block--band .ohc-intro h2,
.ohc-block--band .ohc-intro p {
    color: var(--text-mid);
}
.ohc-block--band .ohc-intro h2 em {
    color: var(--brand-deep);
}

/* Split image + copy */
.ohc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ohc-split.reverse .ohc-split-visual {
    order: 2;
}
.ohc-split.reverse .ohc-split-copy {
    order: 1;
}
.ohc-split-visual {
    position: relative;
}
.ohc-split-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    min-height: 360px;
}
.ohc-split-visual::after {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid rgba(201, 152, 58, 0.35);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.ohc-split-copy .ohc-lead {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}
.ohc-split-copy p {
    margin-bottom: 1rem;
}

/* Stat row */
.ohc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.ohc-stat {
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--surface);
    border: 1px solid rgba(67, 29, 83, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.ohc-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-magenta);
    line-height: 1;
}
.ohc-stat span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}
.ohc-block--cream .ohc-stat,
.ohc-block--white .ohc-stat {
    background: var(--white);
    border-color: rgba(67, 29, 83, 0.1);
    box-shadow: var(--shadow-sm);
}
.ohc-block--cream .ohc-stat strong,
.ohc-block--white .ohc-stat strong {
    color: var(--navy);
}
.ohc-block--cream .ohc-stat span,
.ohc-block--white .ohc-stat span {
    color: var(--text-light);
}

/* Value / pillar cards */
.ohc-cards {
    display: grid;
    gap: 1.5rem;
}
.ohc-cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.ohc-cards.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.ohc-cards.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.ohc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    height: 100%;
}
.ohc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.ohc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(222, 110, 161, 0.14);
    color: var(--brand-deep);
}
.ohc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
    color: var(--text-dark);
}
.ohc-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-mid);
}
.ohc-card.accent {
    background: linear-gradient(145deg, var(--brand-deep), var(--brand-eggplant));
    border-color: rgba(201, 152, 58, 0.22);
}
.ohc-card.accent h3,
.ohc-card.accent p {
    color: rgba(255, 255, 255, 0.92);
}
.ohc-card.accent .ohc-card-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold-light);
}

/* Winner pillars */
.ohc-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.ohc-pillar {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}
.ohc-pillar-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}
.ohc-pillar h4 {
    font-size: 1rem;
    margin: 0.5rem 0 0.35rem;
    color: var(--navy);
}
.ohc-pillar p {
    font-size: 0.78rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.45;
}

/* Timeline */
.ohc-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(201, 152, 58, 0.4);
}
.ohc-timeline-item {
    position: relative;
    padding: 0 0 2.5rem 1.75rem;
}
.ohc-timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px var(--cream);
}
.ohc-timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}
.ohc-timeline-item h3 {
    font-size: 1.25rem;
    margin: 0.25rem 0 0.5rem;
}
.ohc-timeline-item p {
    font-size: 0.92rem;
    margin: 0;
}

/* Leadership grid */
.ohc-leaders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.ohc-leader {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.ohc-leader:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.ohc-leader-photo {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--surface-muted), var(--surface-blush));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.85;
}
.ohc-leader-body {
    padding: 1.5rem;
}
.ohc-leader-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}
.ohc-leader-role {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
}
.ohc-leader-body p {
    font-size: 0.85rem;
    margin: 0;
}

/* Ministry feature block */
.ohc-ministry-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
    margin-bottom: 2rem;
}
.ohc-ministry-feature .ohc-card-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
}
.ohc-ministry-feature h2 {
    margin-bottom: 0.75rem;
}
.ohc-ministry-feature .ohc-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-deep);
    background: rgba(222, 110, 161, 0.12);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* Schedule table */
.ohc-schedule {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.ohc-schedule th,
.ohc-schedule td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}
.ohc-schedule th {
    background: linear-gradient(90deg, var(--ink), var(--brand-eggplant));
    color: var(--white);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ohc-schedule tr:last-child td {
    border-bottom: none;
}
.ohc-schedule tr:hover td {
    background: rgba(222, 110, 161, 0.06);
}

/* Quote / pastor banner */
.ohc-quote-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #fffefb 0%, var(--surface-blush) 45%, #f3eef6 100%);
    border: 1px solid rgba(67, 29, 83, 0.1);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.ohc-quote-banner::before {
    content: '\201C';
    position: absolute;
    top: -0.15em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    color: rgba(222, 110, 161, 0.22);
}
.ohc-quote-banner blockquote {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-style: italic;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}
.ohc-quote-banner cite {
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-magenta);
}

/* CTA panel */
.ohc-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: linear-gradient(120deg, var(--gold-pale), var(--white));
    border: 1px solid rgba(201, 152, 58, 0.35);
    border-radius: var(--radius-lg);
}
.ohc-cta-panel h3 {
    margin-bottom: 0.35rem;
    color: var(--navy);
}
.ohc-cta-panel p {
    margin: 0;
    max-width: 520px;
}

/* Hub links (parent pages) */
.ohc-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ohc-hub-link {
    display: block;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.ohc-hub-link:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.ohc-hub-link h3 {
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}
.ohc-hub-link p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--text-light);
}
.ohc-hub-link .arrow {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
}

/* News cards */
.ohc-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.ohc-news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
}
.ohc-news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.ohc-news-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Icon checklist */
.ohc-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.ohc-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-mid);
}
.ohc-checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .ohc-split,
    .ohc-cards.cols-4,
    .ohc-cards.cols-3,
    .ohc-pillars,
    .ohc-leaders,
    .ohc-hub-grid,
    .ohc-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ohc-split {
        grid-template-columns: 1fr;
    }
    .ohc-split.reverse .ohc-split-visual,
    .ohc-split.reverse .ohc-split-copy {
        order: unset;
    }
}
@media (max-width: 768px) {
    .ohc-cards.cols-2,
    .ohc-cards.cols-3,
    .ohc-cards.cols-4,
    .ohc-pillars,
    .ohc-leaders,
    .ohc-hub-grid,
    .ohc-stats,
    .ohc-news-grid {
        grid-template-columns: 1fr;
    }
    .ohc-cta-panel {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .ohc-ministry-feature {
        grid-template-columns: 1fr;
    }
}

/* Elementor body section: full-bleed designed blocks */
.elementor-section.ohc-designed-page > .elementor-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.elementor-section.ohc-designed-page .elementor-widget-html {
    width: 100%;
}

.ohc-prose {
    max-width: 760px;
    margin: 0 auto;
}
.ohc-prose p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 1.1rem;
}
.ohc-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.ohc-staff-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.ohc-staff-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}
.ohc-staff-role {
    display: block;
    font-size: 0.8rem;
    color: var(--brand-deep);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.ohc-staff-meta {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}
.ohc-staff-meta a {
    color: var(--brand-magenta);
    word-break: break-all;
}

/* ─── Home: replaces duplicate “Explore church life” nav cards ───────────── */
.home-focus-section {
    position: relative;
    padding: 4.5rem 0 5.25rem;
    background: linear-gradient(185deg, #fefdfb 0%, #ffffff 40%, #faf6f8 100%);
    overflow: hidden;
}
.home-focus-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 85% 18%, rgba(201, 152, 58, 0.1), transparent 55%),
        radial-gradient(ellipse 55% 45% at 12% 85%, rgba(222, 110, 161, 0.07), transparent 52%);
    pointer-events: none;
}
.home-focus-grid {
    position: relative;
    z-index: 1;
    display: grid;
    /* Keep Explore block under the schedule/copy (no side-by-side). */
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
.home-focus-copy .section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    margin-bottom: 0.75rem;
}
.home-focus-copy .section-title em {
    color: var(--navy);
    font-style: italic;
}
.home-focus-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.home-focus-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.home-focus-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.35rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out, ease), box-shadow 0.3s ease;
}
.home-focus-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.home-focus-card--accent {
    background: linear-gradient(135deg, rgba(222, 110, 161, 0.08), rgba(201, 152, 58, 0.06));
    border-color: rgba(67, 29, 83, 0.1);
}
.home-focus-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}
.home-focus-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.65rem;
    line-height: 1.55;
}
.home-focus-thumb {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(42, 21, 32, 0.12);
}
.home-focus-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-focus-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-deep);
    text-decoration: none;
}
.home-focus-link:hover {
    color: var(--brand-magenta);
}
.home-focus-visual {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(42, 21, 32, 0.18);
    aspect-ratio: 4 / 3;
    position: relative;
}
.home-focus-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}
.home-focus-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .home-focus-media {
        order: -1;
    }
    .home-focus-actions {
        margin-top: 1rem;
    }
}

/* Content sync: maps, signup, social */
.ohc-map-wrap {
    max-width: 960px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(67, 29, 83, 0.12);
}
.ohc-map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}
.ohc-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.5rem 0;
}
.ohc-social-pill {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--purple-deep, #431d53);
    color: var(--gold, #d4a853);
    text-decoration: none;
}
.ohc-social-pill:hover {
    background: var(--purple-mid, #5c2870);
    color: #fff;
}
.ohc-signup-form {
    max-width: 40rem;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--white, #fff);
    border-radius: 12px;
    border: 1px solid rgba(67, 29, 83, 0.1);
}
.ohc-designed-page .section-title {
    font-family: var(--font-display);
}
.ohc-designed-page .ohc-prose p,
.ohc-designed-page .ohc-lead {
    font-family: var(--font-body);
}
