:root {
    --ink: #111111;
    --muted: #6b6b6b;
    --rule: #e6e6e6;
}

body {
    background: #ffffff;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: #bdbdbd;
}

a:hover {
    text-decoration-color: var(--ink);
}

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 4rem;
}

/* Dos columnas */
.grid {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 720px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .page {
        padding-top: 3rem;
    }
}

/* Columna branding (pegajosa en escritorio) */
.brand {
    position: sticky;
    top: 3rem;
}

@media (max-width: 720px) {
    .brand { position: static; }
}

.monogram {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .28em;
    margin-bottom: 1.5rem;
}

.photo {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.claims {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.claims li {
    font-size: 1.05rem;
    font-weight: 600;
}

.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1.25rem;
    font-size: 1rem;
}

/* Selector de idioma */
.langs {
    margin-top: 1.75rem;
    display: flex;
    gap: 1rem;
    font-size: .85rem;
    letter-spacing: .08em;
}

.langs a {
    text-decoration: none;
    color: var(--muted);
}

.langs a.active {
    color: var(--ink);
    font-weight: 700;
}

/* Columna skills */
.skills h2 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin: 0 0 .5rem;
}

.lead-note {
    color: var(--muted);
    font-size: 1rem;
    margin: 0 0 2.5rem;
    font-style: italic;
}

.skill {
    border-top: 1px solid var(--rule);
    padding-top: 1.5rem;
    margin-top: 1.75rem;
}

.skill:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.skill h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 .35rem;
}

.skill p {
    font-size: 1.0625rem;
    margin: 0;
}

/* Apostillas sarcásticas */
.aside {
    color: var(--muted);
    font-weight: 400;
    font-style: italic;
}

/* Colofón / publi */
.colophon {
    margin: 4rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
}
