/* ============================================================
   SPIRO PILATES — about.css
   ============================================================ */

/* ── GRID ──────────────────────────────────────────────────── */
.spiro-about {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 100vh;
    width: 100%;
    font-family: var(--font-body);
}

/* ── LEWA kolumna — pełne zdjęcie ─────────────────────────── */
.spiro-about__left {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.sa-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 15%;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.spiro-about__left:hover .sa-bg-img {
    transform: scale(1.02);
}

/* ── PRAWA kolumna — tekst ─────────────────────────────────── */
.spiro-about__right {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 80px 64px 80px 60px;
    border-left: 1px solid var(--line);
}

/* Tytuł */
.sa-title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: clamp(24px, 2.8vw, 46px);
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}

.sa-title em {
    font-style: italic;
    color: var(--muted);
}

/* Akapity */
.sa-body {
    font-size: clamp(13px, 1.2vw, 14.5px);
    font-weight: 400;
    line-height: 1.85;
    color: var(--muted);
    max-width: 420px;
    margin: 0 0 14px;
}

.sa-body strong {
    color: var(--text);
    font-weight: 600;
}

/* Separator */
.sa-sep {
    width: 40px;
    height: 1px;
    background: var(--line-strong);
    margin: 20px 0;
}

/* Lead przed listą */
.sa-lead {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 20px;
}

/* Lista zajęć */
.sa-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
    width: 100%;
}

.sa-list__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.75;
    color: var(--muted);
}

.sa-list__item strong {
    color: var(--text);
    font-weight: 600;
}

.sa-list__marker {
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 400;
    color: var(--accent);
    background: var(--cta);
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Zdanie końcowe */
.sa-closing {
    font-family: var(--font-title);
    font-style: italic;
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.75;
    color: var(--muted);
    margin: 8px 0 0;
    max-width: 380px;
}

/* Przycisk CTA */
.sa-cta {
    margin-top: 32px;
    display: inline-flex;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1100px) {
    .spiro-about {
        grid-template-columns: 55% 45%;
    }
    .spiro-about__right {
        padding: 72px 48px 72px 44px;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .spiro-about {
        grid-template-columns: 1fr;
    }
    .spiro-about__left {
        min-height: 56vw;
        max-height: 480px;
    }
    .sa-bg-img {
        background-position: center 70%;
    }
    .spiro-about__right {
        padding: 64px 40px;
        border-left: none;
        border-top: 1px solid var(--line);
        align-items: center;
        text-align: center;
    }
    .sa-body,
    .sa-list,
    .sa-closing {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .sa-sep {
        margin: 20px auto;
    }
    .sa-list__item {
        text-align: left;
    }
    .sa-cta {
        align-self: center;
    }
}

/* Large phone */
@media (max-width: 640px) {
    .spiro-about__left {
        min-height: 65vw;
        max-height: 340px;
    }
    .sa-bg-img {
        background-position: center 75%;
    }
    .spiro-about__right {
        padding: 48px 24px;
    }
    .sa-title {
        font-size: clamp(22px, 7vw, 32px);
    }
    .sa-list {
        gap: 16px;
    }
    .sa-list__item {
        gap: 14px;
        font-size: 13.5px;
    }
}

/* Small phone */
@media (max-width: 380px) {
    .spiro-about__left {
        min-height: 60vw;
        max-height: 280px;
    }
    .sa-bg-img {
        background-position: center 80%;
    }
    .spiro-about__right {
        padding: 40px 18px;
    }
    .sa-title {
        font-size: 22px;
    }
    .sa-list__marker {
        min-width: 26px;
        height: 26px;
        font-size: 10px;
    }
}