/* ============================================
   Page 05 — Core Values
   ============================================ */

.page-values {
    background: var(--paper-warm);
    padding: 18mm 22mm;
    display: flex;
    flex-direction: column;
}

.page-values .pv-header {
    text-align: center;
    margin-bottom: 28px;
}

.page-values .pv-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.page-values .pv-title {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.1;
    margin-bottom: 8px;
}

.page-values .pv-subtitle {
    font-size: 13px;
    color: var(--ink-soft);
    max-width: 160mm;
    margin: 0 auto;
    line-height: 1.6;
}

/* Values grid — 4 columns */
.page-values .pv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    flex: 1;
    align-items: stretch;
}

.page-values .pv-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

/* Top accent bar per card */
.page-values .pv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.page-values .pv-card:nth-child(1)::before { background: var(--brand); }
.page-values .pv-card:nth-child(2)::before { background: var(--brand-2); }
.page-values .pv-card:nth-child(3)::before { background: var(--accent); }
.page-values .pv-card:nth-child(4)::before { background: #7c2d4a; }

.page-values .pv-card .pvc-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--line);
    line-height: 1;
    margin-bottom: 16px;
}

.page-values .pv-card .pvc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: #fff;
}

.page-values .pv-card:nth-child(1) .pvc-icon { background: var(--brand); }
.page-values .pv-card:nth-child(2) .pvc-icon { background: var(--brand-2); }
.page-values .pv-card:nth-child(3) .pvc-icon { background: var(--accent); }
.page-values .pv-card:nth-child(4) .pvc-icon { background: #7c2d4a; }

.page-values .pv-card .pvc-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-values .pv-card .pvc-text {
    font-size: 11.5px;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* Bottom principle strip */
.page-values .pv-principle {
    margin-top: 24px;
    background: linear-gradient(135deg, var(--brand) 0%, #072538 100%);
    border-radius: 12px;
    padding: 20px 28px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-values .pv-principle .pvp-icon {
    width: 44px;
    height: 44px;
    background: rgba(199,162,75,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 20px;
    flex-shrink: 0;
}

.page-values .pv-principle .pvp-text {
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

.page-values .pv-principle .pvp-text strong {
    color: var(--accent-light);
    font-style: normal;
    font-weight: 600;
}
