/* ── Shared layout helpers ── */
.gold-rule {
    border: none;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    margin: 0;
}

/* ── IDENTITY ── */
.identity {
    padding: var(--section-pad);
    background: var(--cream);
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.identity-media {
    position: relative;
}

.id-accent-bar {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 6px;
    background: var(--gold-grad);
    z-index: 1;
}

.id-img-main-wrap {
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.18);
}

.id-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.id-img-main:hover {
    transform: scale(1.03);
}

.identity-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.identity-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 18px;
}

.id-quote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    background: rgba(201, 168, 76, 0.05);
    margin: 28px 0;
}

.id-quote q {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.id-quote cite {
    font-size: 0.75rem;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    font-family: 'Cinzel', serif;
}

.identity-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 991px) {
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ── VALUES BELT ── */
.values-belt {
    background: var(--dark);
    padding: var(--section-pad);
}

.values-belt-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.values-belt-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.values-belt-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.values-belt-head p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.val-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 44px 32px;
    position: relative;
    transition: background 0.3s, border 0.3s;
    border-right: 0.5px solid rgba(201, 168, 76, 0.5);
}

.val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-grad);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.val-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-right-color: rgba(201, 168, 76, 1);
}

.val-card:hover::before {
    transform: scaleX(1);
}

.val-card:last-child {
    border-right: none;
    border-bottom: none;
}

.val-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.val-icon svg {
    width: 100%;
    height: 100%;
}

.val-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.val-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .val-card {
        border-right: none;
        border-bottom: 0.5px solid rgba(201, 168, 76, 0.5);
    }
}

/* ── HISTORY TIMELINE ── */
.history {
    padding: var(--section-pad);
    background: var(--white);
    display: none;
    /* Temporarily hidden */
}

.history h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.history>.container>p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 60px;
}

.section-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-rule::before,
.section-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(157, 4, 4, 0.12);
}

.section-rule-icon {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    white-space: nowrap;
}

.timeline {
    position: relative;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, var(--crimson), var(--gold));
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0 24px;
    margin-bottom: 56px;
    align-items: start;
}

.tl-mid {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.tl-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--crimson-grad);
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(157, 4, 4, 0.4);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.tl-year {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.tl-card {
    border: 1px solid rgba(157, 4, 4, 0.12);
    padding: 28px;
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tl-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

.tl-card-year {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.tl-card h4 {
    font-size: 1rem;
    color: var(--crimson);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.tl-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
}

.tl-item.flip .tl-right .tl-card,
.tl-item.flip .tl-right .tl-year {
    text-align: left;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .tl-item,
    .tl-item.flip {
        grid-template-columns: 60px 1fr;
        grid-template-areas: "mid right";
    }

    .tl-left {
        display: none;
    }

    .tl-mid {
        grid-area: mid;
    }

    .tl-right,
    .tl-item:not(.flip) .tl-left {
        grid-area: right;
    }

    .tl-item:not(.flip) .tl-left {
        display: block;
        grid-area: right;
    }

    .tl-item:not(.flip) .tl-right {
        display: none;
    }
}

/* ── LEADERSHIP ── */
.leadership {
    padding: var(--section-pad);
    background: var(--cream);
    display: none;
    /* Temporarily hidden */
}

.leadership h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.leadership>.container>p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 760px;
    margin-bottom: 60px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.leader-card {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.leader-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 10, 0.5) 0%, transparent 60%);
}

.leader-body {
    padding: 28px;
}

.leader-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.leader-role {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-family: 'Cinzel', serif;
}

.leader-bio {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.75;
}

.faculty-note {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.25);
    max-width: 820px;
}

.faculty-note p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .leaders-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }
}

/* ── MISSION ── */
.mission {
    background: var(--dark);
    padding: var(--section-pad);
}

.mission-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 70px;
}

.mission-intro h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.mission-intro>div>p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 28px;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mission-list-item .gd-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.85rem;
}

.mission-list-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
}

.mission-verse {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.mission-verse q {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.mission-verse cite {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.mission-verse-divider {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-verse-divider q {
    font-size: 1rem;
}

.mission-pillars-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.mp-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
}

.mp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-grad);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.mp-card:hover {
    background: rgba(201, 168, 76, 0.05);
}

.mp-card:hover::before {
    transform: scaleX(1);
}

.mp-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.mp-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.mp-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .mission-intro {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-pillars-row {
        grid-template-columns: 1fr;
    }
}

/* ── GLOBAL IMPACT ── */
.global {
    padding: var(--section-pad);
    background: var(--white);
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.global h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.global>.container>.global-grid>div>p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.impact-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.impact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.impact-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.global-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.1);
    margin-bottom: 2rem;
}

.gstat {
    padding: 28px 24px;
    background: var(--cream);
    text-align: center;
    transition: background 0.3s;
}

.gstat:hover {
    background: rgba(201, 168, 76, 0.08);
}

.gstat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.gstat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.construction-box {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.construction-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.progress-bar-track {
    background: rgba(157, 4, 4, 0.12);
    border-radius: 99px;
    height: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar-fill {
    background: var(--crimson-grad);
    height: 100%;
    width: 39%;
    border-radius: 99px;
}

@media (max-width: 900px) {
    .global-grid {
        grid-template-columns: 1fr;
    }
}

/* ── WHY CHOOSE DBC ── */
.why {
    background: var(--dark);
    padding: var(--section-pad);
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.why h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.why-img-stack {
    position: relative;
}

.why-img-main-wrap {
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
}

.why-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.why-img-main:hover {
    transform: scale(1.04);
}

.why-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border: 5px solid var(--dark);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.why-img-accent img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.why-img-secondary-wrap {
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

.why-img-secondary {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: right center;
    display: block;
    transition: transform 0.5s;
}

.why-img-secondary:hover {
    transform: scale(1.04);
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.why-num {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
    min-width: 32px;
}

.why-title {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.why-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-img-col {
        display: none;
    }
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: var(--section-pad);
    background: var(--cream);
}

.testimonials h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.testimonials>.container>p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 60px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--white);
    padding: 40px 36px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

.testi-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 0.7;
    color: var(--crimson);
    opacity: 0.15;
    margin-bottom: 12px;
}

.testi-body {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.testi-role {
    font-size: 0.72rem;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ── PARTNERSHIPS ── */
.partners {
    background: var(--cream);
    padding: var(--section-pad);
}

.partners-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.partners h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.partners-desc {
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.plogo {
    padding: 12px 24px;
    border: 2px solid var(--gold-dark);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    background: var(--gold-light);
    transition: all 0.3s;
}

@media (max-width: 560px) {
    .partner-logos {
        flex-direction: column;
    }

    .plogo {
        width: 100%;
    }
}

.plogo:hover {
    border-color: var(--crimson);
    color: var(--white);
    background: var(--crimson);
}

.plogo a {
    color: inherit;
    text-decoration: none;
}

.plogo a:hover {
    color: inherit;
}

.partners-legal {
    font-size: 0.75rem;
    color: rgba(106, 80, 80, 0.5);
    margin-top: 2rem;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--crimson-grad-v);
    padding: var(--section-pad);
    text-align: center;
}

.cta-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-w {
    flex: 1;
    padding: 14px 32px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--white);
    color: var(--crimson);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    white-space: nowrap;
}

.btn-w:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-ow {
    flex: 1;
    padding: 14px 32px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    white-space: nowrap;
}

.btn-ow:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.cta-contacts {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    text-align: center;
}

.cta-contact-icon {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.cta-contact-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cta-contact-val {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-contact-val a {
    color: inherit;
    text-decoration: none;
}

.cta-contact-val a:hover {
    color: var(--gold-light);
}

/* ── FOOTER ── */
.page-footer {
    background: #0f0404;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.foot-i {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.foot-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.foot-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.foot-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.foot-links a:hover {
    color: var(--gold);
}

@media (max-width: 600px) {
    .foot-i {
        flex-direction: column;
        text-align: center;
    }
}

/* ══════════ FAITH SECTION ══════════ */
.faith-section {
    padding: var(--section-pad);
    background: var(--cream);
}

.faith-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faith-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faith-header p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.doctrine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.doctrine-item {
    padding: 40px;
    border-bottom: 1px solid rgba(157, 4, 4, 0.1);
    transition: all 0.3s ease;
}

.doctrine-item:hover {
    background: rgba(201, 168, 76, 0.02);
}

.doctrine-item:last-child {
    border-bottom: none;
}

.doctrine-number {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.doctrine-item h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.doctrine-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0;
}

.scripture-ref {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--crimson);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(157, 4, 4, 0.1);
    display: block;
    font-weight: 700;
}

.doctrine-section-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--crimson);
    letter-spacing: 0.02em;
    font-weight: 700;
}

.doctrine-section-title:first-of-type {
    margin-top: 0;
}

@media (max-width: 768px) {
    .faith-section {
        padding: 60px 20px;
    }

    .faith-header {
        margin-bottom: 48px;
    }

    .faith-header h2 {
        font-size: 1.6rem;
    }

    .doctrine-item {
        padding: 28px 0;
    }

    .doctrine-section-title {
        font-size: 1.1rem;
        margin-top: 40px;
        margin-bottom: 24px;
    }
}