:root {
    --ph-navy: #10263f;
    --ph-blue: #0d6ea6;
    --ph-gold: #d6a647;
    --ph-ink: #1d2730;
    --ph-muted: #6c7884;
    --ph-soft: #f4f7f7;
    --ph-white: #ffffff;
}

body {
    color: var(--ph-ink);
    font-family: "Lato", Arial, sans-serif;
    line-height: 1.7;
    background: var(--ph-white);
}

a {
    color: var(--ph-blue);
}

.skip-link {
    position: absolute;
    left: -999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 1000;
    background: var(--ph-white);
    padding: 10px 14px;
}

.ph-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.ph-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(16, 38, 63, 0.08);
}

.ph-nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ph-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ph-navy);
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ph-brand img,
.ph-footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.ph-menu ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ph-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--ph-navy);
    font-weight: 700;
}

.ph-menu a.active,
.ph-menu a:hover {
    color: var(--ph-blue);
}

.ph-menu-toggle {
    display: none;
    border: 0;
    background: var(--ph-navy);
    color: var(--ph-white);
    width: 44px;
    height: 44px;
}

.ph-hero,
.ph-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ph-hero {
    display: block;
    min-height: 0;
}

.ph-page-hero {
    min-height: 380px;
    background: linear-gradient(135deg, var(--ph-navy), #143f57);
    color: var(--ph-white);
}

.ph-hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.ph-hero-actions {
    position: absolute;
    right: max(16px, calc((100% - 1160px) / 2));
    bottom: 96px;
    z-index: 1;
    justify-content: flex-end;
}

.ph-hero-actions .ph-btn-ghost {
    background: var(--ph-gold);
    color: var(--ph-navy);
    border-color: var(--ph-gold);
}

.ph-hero h1,
.ph-page-hero h1 {
    max-width: 820px;
    margin: 8px 0 20px;
    color: inherit;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 64px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.ph-page-hero h1 {
    font-size: 50px;
}

.ph-lead,
.ph-page-hero p {
    max-width: 680px;
    font-size: 21px;
}

.ph-kicker {
    margin: 0 0 10px;
    color: var(--ph-gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0;
}

.ph-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    background: var(--ph-gold);
    color: var(--ph-navy);
    border: 2px solid var(--ph-gold);
    font-weight: 900;
    text-transform: uppercase;
}

.ph-btn:hover {
    background: #c79534;
    border-color: #c79534;
    color: var(--ph-navy);
}

.ph-btn-black,
.ph-btn-black:hover {
    color: #000;
}

.ph-btn-ghost {
    background: transparent;
    color: var(--ph-white);
    border-color: rgba(255, 255, 255, 0.72);
}

.ph-btn-light {
    background: var(--ph-white);
    border-color: var(--ph-white);
    color: #000;
}

.ph-footer a.ph-btn-light {
    color: #000;
}

.ph-btn-light:hover {
    color: #000;
}

.ph-section {
    padding: 88px 0;
}

.ph-band {
    background: var(--ph-soft);
}

.ph-intro-video {
    background: var(--ph-white);
}

.ph-intro-video-card {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.ph-intro-video-card h2 {
    color: var(--ph-navy);
    margin-bottom: 24px;
}

.ph-intro-video-frame {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 50px rgba(16, 38, 63, 0.14);
}

.ph-intro-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ph-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    align-items: center;
    gap: 54px;
}

.ph-reverse {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.ph-section h2,
.ph-section h3 {
    color: var(--ph-navy);
}

.ph-section h2 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.22;
    font-weight: 900;
}

.ph-section p {
    font-size: 17px;
    color: var(--ph-muted);
}

.ph-image-card img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
    box-shadow: 0 24px 70px rgba(16, 38, 63, 0.18);
}

.ph-map-card img {
    object-fit: contain;
    background: var(--ph-white);
    padding: 28px;
}

.ph-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ph-cards article,
.ph-callout,
.ph-giving,
.ph-form,
.ph-feature-list article {
    background: var(--ph-white);
    padding: 34px;
    box-shadow: 0 18px 50px rgba(16, 38, 63, 0.09);
}

.ph-cards i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--ph-navy);
    color: var(--ph-gold);
    font-size: 22px;
}

.ph-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ph-section-intro {
    max-width: 720px;
    margin-bottom: 36px;
}

.ph-directors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.ph-director-card {
    min-width: 0;
    overflow: hidden;
    background: var(--ph-white);
    box-shadow: 0 18px 50px rgba(16, 38, 63, 0.09);
    display: flex;
    flex-direction: column;
}

.ph-director-card-image {
    display: block;
    width: 100%;
    height: 260px;
    max-width: 100%;
    object-fit: contain;
    background: #eef2f5;
}

.ph-director-card-body {
    flex: 1;
    padding: 24px;
}

.ph-director-card h3 {
    margin: 0 0 14px;
    color: var(--ph-navy);
    font-size: 22px;
    line-height: 1.25;
}

.ph-director-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.ph-advisory-section {
    background: var(--ph-soft);
}

.ph-advisory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ph-national-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ph-person-placeholder {
    display: grid;
    place-items: center;
    height: 320px;
    background: var(--ph-navy);
    color: var(--ph-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 64px;
    font-weight: 800;
}

.ph-house-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.ph-house-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--ph-white);
    box-shadow: 0 14px 34px rgba(16, 38, 63, 0.11);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ph-house-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(16, 38, 63, 0.16);
}

.ph-house-card-image {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center;
    background: #eef2f5;
}

.ph-house-card-body {
    padding: 20px;
    border-top: 3px solid var(--ph-gold);
    min-height: 112px;
}

.ph-house-card h3 {
    margin: 0 0 8px;
    color: var(--ph-navy);
    font-size: 20px;
    line-height: 1.25;
}

.ph-house-card p {
    margin: 0;
}

.ph-house-cta {
    text-align: center;
}

.ph-text-link {
    font-weight: 900;
    color: var(--ph-blue);
}

.ph-cta-band {
    background: var(--ph-navy);
    color: var(--ph-white);
    text-align: center;
}

.ph-cta-band h2,
.ph-cta-band p {
    color: var(--ph-white);
}

.ph-cta-band .ph-actions {
    justify-content: center;
}

.ph-check-list {
    margin: 0 0 28px;
    padding-left: 20px;
}

.ph-check-list li {
    margin-bottom: 12px;
    color: var(--ph-muted);
}

.ph-form {
    display: grid;
    gap: 18px;
}

.ph-form label {
    display: grid;
    gap: 8px;
    color: var(--ph-navy);
    font-weight: 800;
}

.ph-join-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 54px;
}

.ph-join-intro h2 {
    margin-top: 0;
    color: var(--ph-navy);
}

.ph-join-form {
    gap: 22px;
}

.ph-join-form fieldset {
    display: grid;
    gap: 12px;
    border: 0;
    padding: 0;
    margin: 0;
}

.ph-join-form legend {
    margin-bottom: 4px;
    color: var(--ph-navy);
    font-weight: 800;
}

.ph-join-form input[type='checkbox'],
.ph-join-form input[type='radio'] {
    width: auto;
    flex: 0 0 auto;
}

.ph-join-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.ph-join-options label,
.ph-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ph-muted);
    font-weight: 400;
}

.ph-field-help {
    margin: 0;
    font-size: 14px !important;
}

.ph-form-success {
    padding: 20px;
    color: var(--ph-navy);
}

.ph-form input,
.ph-form textarea {
    width: 100%;
    border: 1px solid #d9e1e7;
    padding: 13px 14px;
    color: var(--ph-ink);
}

.ph-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.ph-home-grid-center {
    align-items: start;
}

.ph-home-panel {
    border-top: 4px solid var(--ph-gold);
    background: #f6f8f9;
    padding: 32px;
}

.ph-panel-image,
.ph-card-image {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.ph-card-image {
    margin-bottom: 20px;
}

.ph-community-image {
    max-height: none;
    object-fit: contain;
}

.ph-leaders-image {
    object-fit: contain;
}

.ph-home-leaders-image {
    width: 52%;
    margin-inline: auto;
}

.ph-hero-card-image {
    width: min(100%, 360px);
    height: auto;
    object-fit: contain;
    margin-bottom: 22px;
    border: 4px solid rgba(255, 255, 255, .8);
}

.ph-online-image {
    width: min(100%, 900px);
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0 auto 22px;
}

.ph-home-panel h2,
.ph-home-panel p:last-child {
    margin-bottom: 0;
}

.ph-community-panel .ph-link-heading {
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
}

.ph-community-panel > .ph-link-heading {
    margin-bottom: 16px;
}

.ph-link-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 8px;
}

.ph-link-list a,
.ph-media-links a,
.ph-ministry-card {
    color: var(--ph-navy);
}

.ph-link-list a::before {
    content: '→';
    color: var(--ph-gold);
    margin-right: 8px;
}

.ph-online {
    text-align: center;
    background: transparent;
    color: var(--ph-white);
    box-shadow: none;
}

.ph-online-section {
    background: #091325;
}

.ph-online h2,
.ph-online p {
    color: var(--ph-white);
}

.ph-online .ph-kicker {
    color: var(--ph-gold);
}

.ph-online .ph-text-link {
    color: var(--ph-gold);
}

.ph-online .ph-broadcast-link {
    display: inline-block;
    padding: 4px 10px;
    font-size: 1.35rem;
}

.ph-small {
    font-size: 14px;
    margin: 18px 0 0;
    color: var(--ph-muted);
}

.ph-badge {
    display: inline-block;
    background: var(--ph-gold);
    color: var(--ph-navy);
    padding: 4px 9px;
    font-size: 12px;
    vertical-align: middle;
}

.ph-ministry-grid,
.ph-media-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ph-ministry-card,
.ph-media-links a {
    display: block;
    border: 1px solid #d9e1e7;
    padding: 22px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ph-ministry-card:hover,
.ph-media-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(12, 29, 49, .1);
}

.ph-ministry-card h3,
.ph-media-links h2 {
    margin-top: 0;
}

.ph-ministry-card span {
    font-weight: 800;
    color: var(--ph-gold-dark, #a66d00);
}

.ph-app-ministries {
    background: #081224;
    color: #d7e5ff;
    padding: 96px 0;
}

.ph-app-ministries .ph-kicker {
    color: #b8c9ea;
}

.ph-app-ministries h2 {
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
    margin: 0 0 14px;
}

.ph-app-intro {
    color: #b8c9ea;
    font-size: 20px;
    margin-bottom: 46px;
}

.ph-app-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.ph-app-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #203962;
    border-radius: 26px;
    background: #0b1830;
    color: #d7e5ff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ph-app-card:hover {
    transform: translateY(-5px);
    border-color: #2e67c1;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
    color: #fff;
}

.ph-app-card > img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #0b1830;
}

.ph-app-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 30px 30px;
}

.ph-app-card-label {
    margin: 0 0 24px;
    color: #b8c9ea;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ph-app-card h3 {
    color: #fff;
    font-size: 25px;
    margin: 0 0 18px;
}

.ph-app-card-body > p:not(.ph-app-card-label) {
    color: #b8c9ea;
    line-height: 1.45;
    margin-bottom: 28px;
}

.ph-app-card span {
    margin-top: auto;
    color: #2e67c1;
    font-size: 18px;
    font-weight: 800;
}

.ph-app-card span b {
    font-size: 22px;
}

@media (max-width: 980px) {
    .ph-home-grid,
    .ph-ministry-grid,
    .ph-media-links,
    .ph-directors-grid,
    .ph-app-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ph-footer {
    background: #0c1d31;
    color: rgba(255, 255, 255, 0.82);
    padding-top: 64px;
}

.ph-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 44px;
}

.ph-footer h3 {
    color: var(--ph-white);
    margin: 0 0 16px;
}

.ph-footer a {
    color: rgba(255, 255, 255, 0.86);
}

.ph-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ph-footer-links a {
    display: inline-block;
    padding: 5px 0;
}

.ph-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.ph-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ph-gold);
    color: var(--ph-navy);
}

.ph-copyright {
    margin-top: 46px;
    padding: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {
    .ph-nav {
        min-height: 76px;
        flex-wrap: wrap;
    }

    .ph-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ph-menu {
        display: none;
        width: 100%;
    }

    .ph-menu.is-open {
        display: block;
    }

    .ph-menu ul {
        display: grid;
        gap: 0;
        padding: 10px 0 18px;
    }

    .ph-two-col,
    .ph-reverse,
    .ph-cards,
    .ph-feature-list,
    .ph-house-grid,
    .ph-join-layout,
    .ph-footer-grid {
        grid-template-columns: 1fr;
    }

    .ph-home-grid,
    .ph-ministry-grid,
    .ph-media-links,
    .ph-app-card-grid,
    .ph-join-options {
        grid-template-columns: 1fr;
    }

    .ph-hero h1,
    .ph-page-hero h1 {
        font-size: 42px;
    }

    .ph-hero {
        min-height: 0;
    }

    .ph-hero-actions {
        right: 16px;
        bottom: 48px;
    }
}

@media (max-width: 560px) {
    .ph-home-leaders-image {
        width: 100%;
    }

    .ph-container {
        width: min(100% - 24px, 1160px);
    }

    .ph-brand span {
        font-size: 19px;
    }

    .ph-brand img,
    .ph-footer-logo {
        width: 54px;
        height: 54px;
    }

    .ph-hero h1,
    .ph-page-hero h1 {
        font-size: 34px;
    }

    .ph-lead,
    .ph-page-hero p {
        font-size: 18px;
    }

    .ph-hero-actions {
        position: static;
        justify-content: center;
        padding: 16px 12px;
        background: var(--ph-navy);
    }

    .ph-directors-grid,
    .ph-national-grid {
        grid-template-columns: 1fr;
    }

    .ph-section {
        padding: 58px 0;
    }

    .ph-cards article,
    .ph-callout,
    .ph-giving,
    .ph-form,
    .ph-feature-list article {
        padding: 24px;
    }
}
