/* ============================================
   Page 15 — Contact / Back Cover
   ============================================ */

.page-contact {
    background: linear-gradient(135deg, #0b3a5b 0%, #072538 60%, #050f1a 100%);
    color: #fff;
    padding: 20mm 24mm;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.page-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-contact::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199,162,75,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-contact .pc-top {
    position: relative;
    z-index: 2;
}

.page-contact .pc-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-contact .pc-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.page-contact .pc-title {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
}

.page-contact .pc-title .accent {
    color: var(--accent-light);
    font-style: italic;
}

.page-contact .pc-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 160mm;
    font-weight: 300;
}

/* Contact cards grid */
.page-contact .pc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.page-contact .pc-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px 22px;
    backdrop-filter: blur(10px);
}

.page-contact .pc-card .pcc-icon {
    width: 40px;
    height: 40px;
    background: rgba(199,162,75,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 18px;
    margin-bottom: 14px;
}

.page-contact .pc-card .pcc-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    margin-bottom: 6px;
}

.page-contact .pc-card .pcc-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

.page-contact .pc-card .pcc-value a {
    color: #fff;
    text-decoration: none;
}

/* Portfolio logos strip */
.page-contact .pc-logos {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.page-contact .pc-logos .pcl-title {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    width: 100%;
    margin-bottom: 4px;
}

.page-contact .pc-logos .pcl-item {
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 80px;
}

.page-contact .pc-logos .pcl-item img {
    max-width: 70px;
    max-height: 28px;
    object-fit: contain;
}

/* Bottom bar */
.page-contact .pc-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.page-contact .pc-bottom .pcb-brand {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
}

.page-contact .pc-bottom .pcb-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.page-contact .pc-bottom .pcb-year {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--accent-light);
    font-weight: 700;
}

/* Gold accent line */
.page-contact .pc-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right,
        transparent 0%,
        var(--accent-dark) 15%,
        var(--accent) 50%,
        var(--accent-dark) 85%,
        transparent 100%);
    z-index: 3;
}
