/* ============================================================
   Laura · about.css — «Sobre mí»
   Presentación editorial serena del texto de Laura:
   héroe, columna de lectura, frases destacadas y cierre.
   ============================================================ */

/* Tokens «Calma» — la misma paleta pastel de la portada (landing.css) */
body[data-active="sobre-mi"] {
    --paper: #f4f4f4;
    --paper-2: #eae9e0;
    --sage: #9db8a7;
    --sage-deep: #6e8c79;
    --terra: #cf8d90;
    --terra-deep: #c46a6e;
    --peach: #ecc9b6;
    --blush: #e9c8c8;
    --sky: #c2d1d4;
    --sky-deep: #5c7278;
    --line: rgba(110, 140, 121, .14);
    --shadow: 0 24px 70px rgba(110, 140, 121, .1)
}

body[data-active="sobre-mi"] ::selection {
    background: var(--sage);
    color: #f6f7f2
}

.about {
    overflow: clip;
    --display: "Instrument Serif", Georgia, serif;
}

.about :focus-visible {
    outline: 2px solid var(--sage-deep);
    outline-offset: 3px;
    border-radius: 4px;
}

.about .container {
    width: min(1180px, 100%);
    margin: auto;
}

.about .kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sage-deep);
    font: 700 11px var(--manrope);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.about .kicker i {
    width: 34px;
    height: 1px;
    background: var(--sage);
}

.about .kicker.center {
    justify-content: center;
}

/* ---------- héroe ---------- */

.about-hero {
    min-height: 92svh;
    display: grid;
    align-content: center;
    position: relative;
    padding: 150px 22px 70px;
    overflow: hidden;
    background:
        radial-gradient(880px 600px at 92% -10%, rgba(157, 184, 167, .34), transparent 58%),
        radial-gradient(760px 560px at -10% 46%, rgba(233, 200, 200, .3), transparent 56%),
        radial-gradient(680px 520px at 60% 112%, rgba(194, 209, 212, .34), transparent 60%),
        linear-gradient(180deg, #f5f4ee, var(--paper) 72%)
}

.hero-orbit {
    position: absolute;
    right: -14vw;
    bottom: -22vw;
    width: 58vw;
    height: 58vw;
    border: 1px solid rgba(110, 140, 121, .14);
    border-radius: 50%;
    transform: rotate(-18deg);
    pointer-events: none;
}

.hero-orbit:before,
.hero-orbit:after {
    content: "";
    position: absolute;
    inset: 11%;
    border: 1px solid rgba(110, 140, 121, .1);
    border-radius: 50%;
}

.hero-orbit:after {
    inset: 22%;
}

.about-hero h1 {
    font: 400 clamp(60px, 9vw, 122px)/.92 var(--display);
    letter-spacing: -.045em;
    margin: 24px 0 0;
}

.about-hero h1 em {
    font-style: italic;
    color: var(--terra);
}

.about-lead {
    max-width: 30ch;
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.6;
    color: #5f6a61;
    margin: 32px 0 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-meta span {
    padding: 9px 15px;
    border: 1px solid rgba(110, 140, 121, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    font: 700 10px var(--manrope);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sage-deep);
}

/* ---------- cuerpo ---------- */

.about-body {
    width: min(700px, 100%);
    margin: 0 auto;
    padding: 40px 22px 130px;
}

.about-section {
    margin-top: 60px;
}

.about-section .kicker {
    margin-bottom: 34px;
}

.prose {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ink);
    margin: 0 0 1.6em;
}

.prose em {
    font-style: italic;
    color: var(--terra);
}

.sep {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 74px 0 0;
    color: var(--sage);
    font-size: 13px;
}

.sep:before,
.sep:after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ---------- cierre ---------- */

.about-close {
    text-align: center;
    margin-top: 96px;
    padding: 76px 30px 84px;
    border-radius: 32px;
    background:
        radial-gradient(120% 130% at 50% 115%, rgba(233, 184, 159, .35), transparent 55%),
        var(--white);
    border: 1px solid rgba(110, 140, 121, .12);
    box-shadow: 0 24px 70px rgba(110, 140, 121, .1);
}

.about-close h2 {
    font: 400 clamp(42px, 6vw, 68px)/.95 var(--serif);
    letter-spacing: -.035em;
    margin: 22px 0 0;
}

.about-close h2 em {
    font-style: italic;
    color: var(--terra);
}

.about-close p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    margin: 22px auto 0;
    max-width: 34ch;
}

.about-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 34px;
}

.btn-ink,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 13px;
    transition: transform .25s, box-shadow .25s;
}

.btn-ink {
    background: var(--sage-deep);
    color: #f1f4ee;
    box-shadow: 0 14px 34px rgba(110, 140, 121, .24);
}

.btn-ghost {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(196, 106, 110, .35);
    padding-bottom: 3px;
    color: var(--terra-deep);
}

.btn-ghost:hover {
    border-bottom-color: var(--terra-deep);
}

.btn-ink:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

/* ---------- aparición al hacer scroll ---------- */

html.js [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

html.js [data-reveal].in {
    opacity: 1;
    transform: none;
}

html.js .hero-meta,
html.js .about-ctas {
    transition-delay: 0s;
}

/* ---------- responsive ---------- */

@media(max-width:620px) {
    .about-hero {
        padding-top: 125px;
    }

    .hero-meta span {
        font-size: 9px;
        padding: 8px 11px;
    }

    .about-body {
        padding-bottom: 96px;
    }

    .prose {
        font-size: 16.5px;
    }

    .about-close {
        padding: 60px 22px 66px;
    }

    .about-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-ink,
    .btn-ghost {
        justify-content: center;
    }
}

/* ---------- movimiento reducido ---------- */

@media(prefers-reduced-motion:reduce) {

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
