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

:root {
    --bg: #080808;
    --cream: #E3D5C3;
    --cream-mid: rgba(227, 213, 195, 0.5);
    --cream-faint: rgba(227, 213, 195, 0.1);
}

html,
body {
    height: 100%;
}

body {
    background-color: var(--bg);
    background-image: radial-gradient(ellipse at 50% 38%, rgba(227, 213, 195, 0.05) 0%, transparent 60%);
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Layout ─────────────────────────────────────────── */

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px 48px;
}

.footer {
    padding: 20px 32px;
    text-align: center;
    border-top: 1px solid var(--cream-faint);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(227, 213, 195, 0.22);
}

/* ─── Logo ───────────────────────────────────────────── */

.logo-wrap {
    width: min(340px, 78vw);
    margin-bottom: 36px;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.05s;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Eyebrow label ──────────────────────────────────── */

.eyebrow {
    display: inline-block;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #FBF7F0;
    margin-bottom: 28px;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.18s;
}

/* ─── Divider ────────────────────────────────────────── */

.divider {
    width: 40px;
    height: 1px;
    background: var(--cream-mid);
    margin-bottom: 32px;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.28s;
}

/* ─── Description ────────────────────────────────────── */

.description {
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.8;
    font-weight: 400;
    color: var(--cream);
    max-width: 560px;
    margin-bottom: 48px;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.38s;
}

/* ─── LinkedIn link ──────────────────────────────────── */

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream-mid);
    text-decoration: none;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    border: 1px solid var(--cream-faint);
    padding: 13px 28px;
    transition: color 0.25s ease, border-color 0.25s ease;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.5s;
}

.linkedin-link:hover {
    color: var(--cream);
    border-color: var(--cream-mid);
}

.linkedin-link:focus-visible {
    outline: 1px solid var(--cream-mid);
    outline-offset: 4px;
}

/* ─── Animations ─────────────────────────────────────── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-wrap,
    .eyebrow,
    .divider,
    .description,
    .linkedin-link {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 480px) {
    .container {
        padding: 80px 24px 40px;
    }

    .description {
        font-size: 18px;
    }

    .linkedin-link {
        padding: 12px 22px;
    }
}
