/* ==========================================================================
   text.css — tipografia, encabezados, listas, marcadores sesgados
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--pah-font-head);
    color: var(--pah-silver);
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 5.4vw, 4.1rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    letter-spacing: -0.005em;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 600;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--pah-font-body);
}

p {
    color: var(--pah-silver-2);
    max-width: 62ch;
}

p.pah-lead {
    font-size: 1.15rem;
    color: var(--pah-silver);
    max-width: 54ch;
}

strong {
    color: var(--pah-silver);
    font-weight: 600;
}

a.pah-inline-link {
    color: var(--pah-mint);
    border-bottom: 1px solid var(--pah-mint-dim);
    transition: border-color 0.2s var(--pah-ease), color 0.2s var(--pah-ease);
}

a.pah-inline-link:hover {
    border-color: var(--pah-mint);
    color: var(--accent-soft);
}

/* -- kicker / etiqueta de seccion con marcador sesgado ------------------------ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--pah-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pah-mint);
}

.section-tag::before {
    content: '';
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    background-color: var(--pah-mint);
    transform: skewX(-16deg);
    border-radius: 0.15rem;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.4rem;
}

.section-head--wide p {
    max-width: 46rem;
}

/* -- listas con marcador sesgado (decor_flavor: skewed-markers) -------------- */
.pah-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pah-list--item {
    position: relative;
    padding-left: 1.6rem;
    color: var(--pah-silver-2);
}

.pah-list--item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0.65rem;
    height: 0.65rem;
    background-color: var(--pah-mint-dim);
    transform: skewX(-16deg);
    border-radius: 0.12rem;
}

.pah-list--item strong {
    color: var(--pah-silver);
}

/* -- lista de zonas / puntos numerados con marcador sesgado ------------------ */
.pah-steps {
    counter-reset: pah-step;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.pah-steps--item {
    position: relative;
    padding-left: 3rem;
}

.pah-steps--item::before {
    counter-increment: pah-step;
    content: counter(pah-step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: -0.1rem;
    font-family: var(--pah-font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--pah-mint);
    background-color: var(--pah-surface-2);
    width: 2.15rem;
    height: 2.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--pah-radius-sm);
    transform: skewX(-8deg);
}

.pah-steps--item h4 {
    margin-bottom: 0.3rem;
}

/* -- texto legal / notas pequenas -------------------------------------------- */
.pah-note {
    font-size: 0.88rem;
    color: var(--pah-silver-2);
}

.pah-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pah-silver-2);
}
