:root {
    --navy: #0a1628;
    --blue: #0b3d91;
    --blue-mid: #1a56c4;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #f8f5ef;
    --white: #ffffff;
    --text: #1a1a2e;
    --muted: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── HEADER ── */
header {
    background-color: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 60px 40px 50px;
    text-align: center;
}

/* Geometric accent lines */
header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

header::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    pointer-events: none;
}

.header-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.university-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50px;
    padding: 6px 18px 6px 10px;
    margin-bottom: 28px;
    animation: fadeDown 0.6s ease both;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.university-badge span {
    font-size: 0.72em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8em, 4vw, 2.8em);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    animation: fadeDown 0.6s ease 0.1s both;
}

.header-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 18px auto;
    animation: fadeDown 0.6s ease 0.2s both;
}

.subheading {
    font-size: 0.95em;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    font-weight: 300;
    animation: fadeDown 0.6s ease 0.3s both;
}

/* ── MAIN ── */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    max-width: 680px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 20px 60px rgba(10,22,40,0.10);
    animation: fadeUp 0.7s ease 0.4s both;
}

.card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid), var(--gold));
}

.card-body {
    padding: 44px 48px;
}

.section-label {
    font-size: 0.7em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75em;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.2;
}

.divider {
    border: none;
    border-top: 1px solid #e8e4dc;
    margin: 28px 0;
}

.section-title {
    font-size: 0.7em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item {
    background: var(--cream);
    border-radius: 10px;
    padding: 18px 20px;
    border: 1px solid #ede9e0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.detail-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201,168,76,0.12);
}

.detail-label {
    font-size: 0.7em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 1em;
    color: var(--navy);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background-color: var(--navy);
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(201,168,76,0.15);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
    .card-body {
        padding: 32px 24px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    header {
        padding: 44px 24px 36px;
    }
}