/* ============================================================
   Tatueringsstudio — About page
   Story, values, aftercare
   ============================================================ */

/* --- Story section — asymmetric 60/40 --- */

.story-section {
    padding: 4rem 0;
    background: var(--color-background);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.story-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.25rem;
}

.story-text p {
    color: var(--color-text_muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 580px;
    white-space: pre-line;
}

.story-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--color-surface) 0%, color-mix(in srgb, var(--color-surface) 60%, var(--color-primary)) 100%);
}

@media (min-width: 768px) {
    .story-section {
        padding: 6rem 0;
    }

    .story-layout {
        grid-template-columns: 3fr 2fr;
        gap: 3.5rem;
        align-items: center;
    }
}

/* --- Values — vertical stack with accent borders --- */

.values-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.values-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 2.5rem;
}

.values-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.values-item {
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 3px solid var(--color-primary);
    border-bottom: 1px solid rgba(232, 228, 224, 0.06);
}

.values-item:last-child {
    border-bottom: none;
}

.values-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
}

.values-item p {
    color: var(--color-text_muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 550px;
}

@media (min-width: 768px) {
    .values-section {
        padding: 6rem 0;
    }
}

/* --- Aftercare — narrow centered, numbered steps --- */

.aftercare-section {
    padding: 4rem 0;
    background: var(--color-background);
}

.aftercare-content {
    max-width: 650px;
    margin: 0 auto;
}

.aftercare-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.aftercare-intro {
    text-align: center;
    color: var(--color-text_muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.aftercare-steps {
    list-style: none;
    counter-reset: step;
}

.aftercare-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(232, 228, 224, 0.08);
}

.aftercare-step:last-child {
    border-bottom: none;
}

.aftercare-step-number {
    font-family: var(--font-heading), Impact, sans-serif;
    font-size: 2rem;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.aftercare-step strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.aftercare-step p {
    color: var(--color-text_muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .aftercare-section {
        padding: 6rem 0;
    }
}
