﻿:root {
    --about-charcoal: #302a24;
    --about-charcoal-dark: #211f1c;
    --about-gold: #c99b35;
    --about-gold-dark: #8f6519;
    --about-gold-light: #f2cf77;
    --about-ivory: #f7f2e6;
    --about-ivory-light: #fbf7ee;
    --about-text: #5e574f;
    --about-white: #ffffff;
}

.about-page {
    position: relative;
    min-height: calc(100vh - 94px);
    padding: 150px 0 108px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 155, 53, 0.15), transparent 29%),
        linear-gradient(180deg, var(--about-ivory-light) 0%, var(--about-ivory) 52%, #eee5d7 100%);
}

.about-page::before {
    position: absolute;
    top: 94px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 155, 53, 0.42), transparent);
    content: "";
}

.about-page > .container {
    position: relative;
    z-index: 1;
}

.about-header {
    max-width: 960px;
    margin: 0 auto 82px;
    text-align: center;
}

.about-eyebrow {
    margin: 0 0 18px;
    color: var(--about-gold-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.24rem;
    text-transform: uppercase;
}

.about-header h1 {
    max-width: 900px;
    margin: 0 auto 28px;
    color: var(--about-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.4vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    text-wrap: balance;
}

.about-introduction {
    max-width: 760px;
    margin: 0 auto;
    color: var(--about-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    line-height: 1.72;
}

.about-section {
    max-width: 1040px;
    margin: 0 auto;
    padding: 72px 0;
    border-top: 1px solid rgba(201, 155, 53, 0.28);
}

.about-section-heading {
    max-width: 820px;
    margin-bottom: 30px;
}

.about-section-heading h2 {
    margin: 0;
    color: var(--about-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 4vw, 3.65rem);
    font-weight: 700;
    line-height: 1.12;
    text-wrap: balance;
}

.about-section > p {
    max-width: 850px;
    margin: 0 0 20px;
    color: var(--about-text);
    font-size: 1.06rem;
    line-height: 1.82;
}

.about-section > p:last-child {
    margin-bottom: 0;
}

.about-beliefs,
.about-ministry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-beliefs article {
    position: relative;
    min-height: 210px;
    padding: 34px 36px;
    border: 1px solid rgba(114, 91, 54, 0.12);
    border-top: 4px solid var(--about-gold);
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 240, 0.98));
    box-shadow: 0 16px 38px rgba(63, 49, 35, 0.08), 0 2px 5px rgba(63, 49, 35, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-beliefs article:hover {
    border-color: rgba(201, 155, 53, 0.34);
    box-shadow: 0 22px 46px rgba(63, 49, 35, 0.12), 0 4px 9px rgba(63, 49, 35, 0.05);
    transform: translateY(-4px);
}

.about-beliefs h3,
.about-ministry-grid h3 {
    margin: 0 0 15px;
    color: var(--about-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.85rem;
    font-weight: 700;
}

.about-beliefs p,
.about-ministry-grid p {
    margin: 0;
    color: var(--about-text);
    line-height: 1.75;
}

.about-ministry-grid article {
    min-height: 220px;
    padding: 34px 36px;
    border: 1px solid rgba(114, 91, 54, 0.12);
    border-left: 4px solid var(--about-gold);
    border-radius: 3px;
    background-color: var(--about-white);
    box-shadow: 0 16px 38px rgba(63, 49, 35, 0.08);
}

.about-ministry-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--about-gold-dark);
    font-size: 0.72rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.about-next-step {
    position: relative;
    max-width: 940px;
    margin: 72px auto 0;
    padding: 66px 60px;
    overflow: hidden;
    border: 1px solid rgba(201, 155, 53, 0.3);
    border-radius: 3px;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 155, 53, 0.14), transparent 42%),
        linear-gradient(180deg, #2b2824 0%, var(--about-charcoal-dark) 100%);
    box-shadow: 0 22px 52px rgba(35, 30, 24, 0.18);
    text-align: center;
}

.about-next-step::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(520px, 72%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 207, 119, 0.9), transparent);
    content: "";
    transform: translateX(-50%);
}

.about-next-step .about-eyebrow {
    color: var(--about-gold-light);
}

.about-next-step h2 {
    margin: 0 0 20px;
    color: #f5efe2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
}

.about-next-step p {
    max-width: 680px;
    margin: 0 auto 32px;
    color: rgba(247, 242, 230, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.about-primary-action,
.about-secondary-action {
    display: inline-flex;
    min-width: 210px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.about-primary-action {
    border: 1px solid var(--about-gold);
    background: linear-gradient(135deg, var(--about-gold-light), var(--about-gold));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: var(--about-charcoal-dark);
}

.about-primary-action:hover,
.about-primary-action:focus {
    border-color: var(--about-gold-light);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 0 16px rgba(201, 155, 53, 0.16);
    color: var(--about-charcoal-dark);
    transform: translateY(-3px);
}

.about-secondary-action {
    border: 1px solid rgba(247, 242, 230, 0.55);
    background-color: transparent;
    color: #f5efe2;
}

.about-secondary-action:hover,
.about-secondary-action:focus {
    border-color: var(--about-gold-light);
    background-color: rgba(242, 207, 119, 0.08);
    color: var(--about-gold-light);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .about-page {
        padding-top: 128px;
    }

    .about-header {
        margin-bottom: 64px;
    }

    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .about-page {
        padding: 116px 0 78px;
    }

    .about-header {
        margin-bottom: 52px;
        text-align: left;
    }

    .about-header h1 {
        font-size: clamp(2.65rem, 12vw, 3.8rem);
    }

    .about-introduction {
        font-size: 1.08rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-beliefs,
    .about-ministry-grid {
        grid-template-columns: 1fr;
    }

    .about-beliefs article,
    .about-ministry-grid article {
        min-height: auto;
        padding: 28px;
    }

    .about-next-step {
        margin-top: 52px;
        padding: 44px 24px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-primary-action,
    .about-secondary-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-beliefs article,
    .about-primary-action,
    .about-secondary-action {
        transition: none;
    }
}