html {
    font-size: clamp(15px, 1vw, 18px);
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #eaeaea;
}

body {
    font-family: "Source Code Pro", monospace;
    overflow-x: hidden;
}

/* ── hero ─────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 30vh 1.5rem 3rem;
}

.social-links {
    display: flex;
    gap: 0.625rem;
}

.social-link {
    display: inline-flex;
    width: 1.375rem;
    height: 1.375rem;
    text-decoration: none;
}

.social-link img {
    width: 100%;
    height: 100%;
    display: block;
}

.descriptor-line {
    width: min(42.5rem, calc(100vw - 3rem));
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.stickers {
    display: grid;
    grid-template-columns: repeat(5, 88px);
    grid-auto-rows: 31px;
    gap: 2px;
    margin: 0 auto;
}

.stickers img {
    display: block;
}

.scroll-note {
    margin: 0;
    font-weight: 700;
}

.scroll-mark {
    font-style: italic;
}

/* ── content ──────────────────────────────────────────── */

.content {
    max-width: min(75rem, 90vw);
    margin: 0 auto;
    padding: 2.75rem 1.5rem 20rem;
}

.content-title {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 1.5vw, 1.45rem);
    line-height: 1.05;
}

.content-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.content-left {
    flex: 1;
}

.content-description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    word-break: break-word;
}

/* ── project cards ────────────────────────────────────── */

.projects {
    flex: 1;
}

.projects-title {
    margin: 0 0 0.875rem;
    font-size: clamp(1rem, 1.5vw, 1.45rem);
    line-height: 1.05;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.project-card {
    display: block;
    padding: 0.7rem 0.875rem;
    border: 1px solid #c8c8c8;
    background: #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}

.project-card:hover {
    background: #e4e4e4;
}

.project-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.project-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.project-stats {
    display: flex;
    gap: 0.625rem;
    font-size: 0.75rem;
    opacity: 0.55;
    white-space: nowrap;
}

.project-desc {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .content-body {
        flex-direction: column;
    }
}