/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #fafaf9;
    --color-text: #1c1917;
    --color-text-muted: #57534e;
    --color-border: #e7e5e4;
    --color-card-bg: #ffffff;
    --color-card-hover: #f5f5f4;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
}

/* === Layout === */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 580px;
    width: 100%;
}

/* === Hero === */
.hero {
    text-align: center;
    margin-bottom: 1.75rem;
}

.portrait {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-border);
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.tagline {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* === Bio text === */
.bio-text {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    font-weight: 300;
    line-height: 1.7;
}

/* === Link Cards === */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.link-card:hover {
    background: var(--color-card-hover);
    border-color: #d6d3d1;
    transform: translateY(-1px);
}

.link-card--featured {
    border-color: #c8ddf5;
    background: #f8fcff;
}

.link-card--featured:hover {
    background: #eef6ff;
    border-color: #93c5fd;
}

.link-icon {
    font-size: 1.4rem;
    opacity: 0.65;
    flex-shrink: 0;
    width: 2.25rem;
    text-align: center;
}

.link-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.link-title {
    font-weight: 500;
    font-size: 0.95rem;
}

.link-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.link-arrow {
    color: var(--color-text-muted);
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(3px);
    opacity: 0.9;
}

/* === Coming soon box === */
.coming-soon-box {
    margin-bottom: 2.5rem;
    padding: 1.1rem 1.5rem;
    border: 1px dashed var(--color-border);
    border-radius: 10px;
    text-align: center;
    background: var(--color-card-bg);
}

.coming-soon-heading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.45rem;
    opacity: 0.7;
}

.coming-soon-list {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* === Responsive === */
@media (max-width: 480px) {
    .page {
        padding: 1.5rem 1rem;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .portrait {
        width: 100px;
        height: 100px;
    }
}
