:root {
    --brand: #3D3A6B;
    --brand-dark: #2C2A50;
    --brand-light: #6F6BA0;
    --bg: #FAFAF7;
    --surface: #FFFFFF;
    --text: #1F1F2E;
    --text-muted: #6B6B7A;
    --border: #E5E4EC;
    --shadow: 0 1px 2px rgba(31, 31, 46, 0.04), 0 8px 24px rgba(31, 31, 46, 0.06);
    --shadow-hover: 0 2px 4px rgba(31, 31, 46, 0.06), 0 16px 32px rgba(61, 58, 107, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============ HERO ============ */
.hero {
    padding: 96px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: nowrap;
}

.hero-logo {
    display: block;
    width: auto;
    max-width: 320px;
    height: auto;
    flex-shrink: 0;
}

.hero-divider {
    width: 1px;
    height: 72px;
    background: var(--brand);
    opacity: 0.25;
    flex-shrink: 0;
}

.subtitle {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* ============ DOCUMENTS ============ */
.documents {
    padding: 32px 0 96px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.document-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.document-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-light);
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 58, 107, 0.08);
    color: var(--brand);
    border-radius: 10px;
    flex-shrink: 0;
}

.document-card h3 {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: -0.005em;
}

.card-arrow {
    color: var(--brand-light);
    font-size: 1.125rem;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.document-card:hover .card-arrow {
    color: var(--brand);
    transform: translateX(4px);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 36px 0;
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.footer-legal {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
}

.footer-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
    .container {
        padding: 0 20px;
    }
    .hero {
        padding: 64px 0 56px;
    }
    .hero-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .hero-logo {
        max-width: 240px;
    }
    .hero-divider {
        width: 60px;
        height: 1px;
    }
    .subtitle {
        max-width: 320px;
    }
    .documents {
        padding: 16px 0 64px;
    }
    .section-header h2 {
        font-size: 1.875rem;
    }
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .footer-legal,
    .footer-meta {
        font-size: 0.75rem;
        padding: 0 12px;
    }
}
