/* ================================
   SUBPAGE HERO (legal / error pages)
   ================================ */

.page-hero {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero .page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.page-hero .title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 4px;
    margin: 18px auto 0;
}

/* ================================
   POLICY / LEGAL CONTENT CARD
   ================================ */

.policy-wrapper {
    padding: 0 0 100px;
}

.policy-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 30px 0 12px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p {
    margin-bottom: 14px;
}

.policy-card ul {
    margin: 0 0 14px 20px;
}

.policy-card li {
    margin-bottom: 8px;
}

.policy-card .policy-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 767px) {
    .policy-card {
        padding: 25px;
    }
    .page-hero {
        padding: 130px 0 40px;
    }
}

/* ================================
   ERROR PAGES (404 / 403)
   ================================ */

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
    text-align: center;
}

.error-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.error-icon {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.error-message {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
