/* ═════════════════════════════════════════════════
   LANDING PAGE (page-landing.php)
   ═════════════════════════════════════════════════ */

.page-landing { background: #fff; }
.lp-gold { color: #CAAB69; }

/* Wspólny przycisk CTA gold */
.lp-cta-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    background: #CAAB69;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #CAAB69;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.lp-cta-gold:hover, .lp-cta-gold:focus-visible { background: #fff; color: #CAAB69; }

/* ─────────── 1. HERO ─────────── */
.lp-hero {
    position: relative;
    padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 90px);
    background: #fff;
    overflow: hidden;
}
.lp-hero__side {
    position: absolute;
    top: 0;
    width: clamp(160px, 18vw, 320px);
    height: 100%;
    overflow: hidden;
    opacity: 0.55;
    pointer-events: none;
}
.lp-hero__side--left  { left: 0;  }
.lp-hero__side--right { right: 0; }
.lp-hero__side-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.lp-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
}
.lp-hero__title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 22px;
}
.lp-hero__title-strong,
.lp-hero__title-main,
.lp-hero__title-gold { display: block; }
.lp-hero__title-strong { color: #111; font-weight: 700; }
.lp-hero__title-main   { color: #111; font-weight: 400; }
.lp-hero__title-gold   { color: #B58A2D; font-weight: 700; }
.lp-hero__desc {
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    color: #111;
    margin: 0 auto 24px;
    max-width: 640px;
}
.lp-hero__desc p { margin: 0; }
.lp-hero__desc p + p { margin-top: 4px; }
.lp-hero__desc strong { color: #111; font-weight: 700; }

.lp-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 30px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    color: #333;
}
.lp-hero__rating-label { font-weight: 700; letter-spacing: 0.08em; color: #111; }
.lp-hero__rating-stars {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    font-size: 18px;
    line-height: 1;
    color: transparent;
}
.lp-hero__rating-stars-empty {
    color: #d8d8d8;
    display: inline-block;
}
.lp-hero__rating-stars-fill {
    color: #F5B400;
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}
.lp-hero__rating-count { color: #555; }
.lp-hero__rating-google {
    font-family: "Source Sans 3", "Arial", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
}

.lp-hero__video {
    max-width: 680px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #f3e9da;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.lp-hero__video-el { width: 100%; height: 100%; display: block; border: 0; }

/* Video facade — pierwsza klatka jako tło, klik wstrzykuje iframe (LCP friendly) */
.lp-hero__video-facade {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    background: #1a1a1a center/cover no-repeat;
    transition: filter 0.3s ease;
}
.lp-hero__video-facade:hover,
.lp-hero__video-facade:focus-visible { filter: brightness(0.95); }
.lp-hero__video-facade:focus-visible { outline: 2px solid #CAAB69; outline-offset: 4px; }
.lp-hero__video-play {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}
.lp-hero__video-facade:hover .lp-hero__video-play { transform: translate(-50%, -50%) scale(1.08); }

/* ─────────── EXPERIENCE WRAPPER — sekcje 2+3 z bocznymi sukniami ─────────── */
.lp-experience {
    position: relative;
    overflow: hidden;
    background: #fff;
}
.lp-experience__side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(180px, 22vw, 360px);
    pointer-events: none;
    opacity: 0.55;
    overflow: hidden;
    z-index: 0;
    filter: grayscale(20%);
}
.lp-experience__side--left  { left: 0; }
.lp-experience__side--right { right: 0; }
.lp-experience__side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.lp-experience__side--left .lp-experience__side-img {
    mask-image: linear-gradient(to right, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 60%, transparent 100%);
}
.lp-experience__side--right .lp-experience__side-img {
    mask-image: linear-gradient(to left, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, #000 60%, transparent 100%);
}
.lp-experience__inner {
    position: relative;
    z-index: 1;
}

/* ─────────── 2. JAK WYGLĄDA WIZYTA ─────────── */
.lp-jak { padding: clamp(50px, 7vw, 90px) 0 0; background: transparent; }
.lp-jak__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.lp-jak__title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: clamp(1.3rem, 0.9rem + 1.2vw, 2rem);
    letter-spacing: 0.03em; text-transform: uppercase; color: #111;
    margin: 0 0 26px;
    white-space: nowrap;
    line-height: 1.2;
}
.lp-jak__title strong { font-weight: 700; }
.lp-jak__title-gold { color: #B58A2D; }
@media (max-width: 700px) {
    .lp-jak__title { white-space: normal; font-size: 1.2rem; }
}
.lp-jak__body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 17px; line-height: 1.75; color: #333;
}
.lp-jak__body p { margin: 0 0 18px; }
.lp-jak__body p:last-child { margin-bottom: 0; }
.lp-jak__body strong { color: #111; font-weight: 700; }

/* ─────────── 3. PIERWSZA WIZYTA BEZPŁATNA — kroki ─────────── */
.lp-kroki { padding: clamp(20px, 2.5vw, 30px) 0 clamp(60px, 8vw, 100px); background: transparent; }

/* Divider — złoty tekst między dwiema poziomymi liniami (góra i dół) */
.lp-kroki__divider {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto clamp(30px, 4vw, 50px);
    padding: clamp(20px, 3vw, 36px) 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.lp-kroki__divider-line { display: none; }
.lp-kroki__divider-text {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 1rem + 0.7vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #B58A2D;
    text-align: center;
}

.lp-kroki__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 60px);
    font-family: "Source Sans 3", sans-serif;
}
.lp-kroki__head h2,
.lp-kroki__head h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.3rem);
    color: #111;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.lp-kroki__head p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.55;
}
.lp-kroki__head em { font-style: italic; }
.lp-kroki__head strong { color: #111; font-weight: 700; }
.lp-kroki__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--lp-count, 4), 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(36px, 5vw, 60px);
}
.lp-kroki__item {
    text-align: center;
    padding: 0 12px;
}
.lp-kroki__ico {
    width: 64px; height: 64px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
}
.lp-kroki__num {
    color: #111;
    font-weight: 700;
    margin-right: 4px;
}
.lp-kroki__t {
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px; font-weight: 700;
    color: #111; margin: 0 0 12px;
    letter-spacing: 0.01em;
}
.lp-kroki__d {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13.5px; line-height: 1.55; color: #555;
    margin: 0;
}
.lp-kroki__cta-wrap { text-align: center; }
.lp-cta-gold__arrow { margin-left: 4px; }

/* ─────────── 4. WSZYSTKO — 3 KARTY ─────────── */
.lp-wszystko { padding: clamp(50px, 7vw, 90px) 0; background: #FAF7F2; }
.lp-wszystko__title {
    font-family: "Cormorant Garamond", serif; font-weight: 400;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
    text-align: center; line-height: 1.25;
    letter-spacing: 0.03em; text-transform: uppercase;
    color: #111;
    max-width: 880px; margin: 0 auto clamp(30px, 4vw, 50px);
}
.lp-wszystko__title strong { font-weight: 700; }
.lp-wszystko__title .lp-gold {
    color: #B58A2D;
    font-weight: 700;
}
.lp-wszystko__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--lp-count, 3), 1fr);
    gap: clamp(16px, 2vw, 28px);
    align-items: stretch;
}
.lp-wszystko__card {
    background: #fff;
    border: 1px solid #e8e0d3;
    padding: clamp(28px, 3.5vw, 50px) clamp(20px, 2.5vw, 36px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-wszystko__card:hover {
    border-color: #B58A2D;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.lp-wszystko__card--gold {
    background: #B58A2D;
    border-color: #B58A2D;
    color: #fff;
}
.lp-wszystko__card--gold .lp-wszystko__t,
.lp-wszystko__card--gold .lp-wszystko__d { color: #fff; }
.lp-wszystko__card--gold:hover { border-color: #fff; transform: translateY(-4px); }
.lp-wszystko__card--gold .lp-wszystko__ico {
    filter: brightness(0) invert(1);
}
.lp-wszystko__ico {
    width: 80px; height: 80px;
    object-fit: contain;
    margin: 0 auto 22px;
    display: block;
    /* Tint ikony na złoty #B58A2D (działa dla dowolnego dark/black PNG/SVG) */
    filter: brightness(0) saturate(100%) invert(58%) sepia(54%) saturate(540%) hue-rotate(8deg) brightness(89%) contrast(88%);
}
.lp-wszystko__t {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #111; margin: 0 0 14px;
    min-height: 2.4em;
    display: flex; align-items: center; justify-content: center;
}
.lp-wszystko__d {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13.5px; line-height: 1.6;
    color: #666; margin: 0;
    max-width: 280px;
}

/* ─────────── 5. KOLEKCJA — karuzela ─────────── */
.lp-kolekcja {
    padding: clamp(50px, 7vw, 90px) clamp(20px, 4vw, 60px);
    background: #F5EEE8;
    overflow: hidden;
}
.lp-kolekcja__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
    max-width: none;
    padding: 0;
}
.lp-kolekcja__carousel { position: relative; overflow: hidden; }
.lp-kolekcja__track {
    display: flex; gap: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.lp-kolekcja__track::-webkit-scrollbar { display: none; }
.lp-kolekcja__card {
    flex: 0 0 calc((100% - 72px) / 5);
    scroll-snap-align: start;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lp-kolekcja__link { display: block; width: 100%; text-decoration: none; color: inherit; }
.lp-kolekcja__img-wrap {
    position: relative; aspect-ratio: 9/16;
    overflow: hidden; background: #000;
}
.lp-kolekcja__img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block; transition: transform 0.5s ease;
}
.lp-kolekcja__link:hover .lp-kolekcja__img { transform: scale(1.04); }
.lp-kolekcja__name {
    position: absolute; left: 0; right: 0; bottom: 8%;
    text-align: center; color: #fff;
    font-family: "Cormorant Garamond", serif; font-weight: 600;
    font-size: clamp(0.9rem, 0.7rem + 0.5vw, 1.2rem);
    letter-spacing: 0.05em; text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    pointer-events: none;
}
.lp-kolekcja__cta-card {
    font-family: "Source Sans 3", sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #111; text-decoration: none;
    padding-bottom: 4px; border-bottom: 1px solid #CAAB69;
    transition: color 0.25s ease;
}
.lp-kolekcja__cta-card:hover { color: #CAAB69; }
.lp-kolekcja__btn--prev { left: 12px; }
.lp-kolekcja__btn--next { right: 12px; }

.lp-kolekcja__aside {}
.lp-kolekcja__title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
    line-height: 1.2; letter-spacing: 0.02em;
    text-transform: uppercase; color: #111;
    margin: 0 0 16px;
}
.lp-kolekcja__body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; line-height: 1.65;
    color: #333; margin: 0 0 16px;
}
.lp-kolekcja__body p { margin: 0 0 10px; }
.lp-kolekcja__body strong { color: #111; }
.lp-kolekcja__cta {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #B58A2D; text-decoration: none;
}
.lp-kolekcja__cta:hover { color: #111; }

/* ─────────── 6. OPINIE ─────────── */
.lp-opinie { padding: clamp(50px, 7vw, 90px) 0; background: #fff; }
.lp-opinie__head { text-align: center; margin: 0 0 clamp(30px, 4vw, 50px); }
.lp-opinie__title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
    letter-spacing: 0.03em; text-transform: uppercase;
    color: #111; margin: 0 0 12px;
}
.lp-opinie__sub {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; color: #888; margin: 0;
    letter-spacing: 0.05em;
}
.lp-opinie__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: stretch;
}

/* Card */
.lp-opinie__card {
    position: relative;
    background: #fff;
    border: 1px solid #ece4d4;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.lp-opinie__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    border-color: #B58A2D;
}

/* Photo banner — góra karty */
.lp-opinie__photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3e9da;
    position: relative;
}
.lp-opinie__photo::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B58A2D 0%, #CAAB69 100%);
}
.lp-opinie__photo-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}
.lp-opinie__card:hover .lp-opinie__photo-img { transform: scale(1.04); }

/* Body — dolna część karty z tekstem */
.lp-opinie__body {
    position: relative;
    padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 38px) clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
}

/* Decorative quote mark */
.lp-opinie__quote {
    position: absolute;
    top: 8px;
    right: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 96px;
    line-height: 1;
    color: #f3e9da;
    pointer-events: none;
    user-select: none;
}

/* Stars row */
.lp-opinie__stars {
    display: flex;
    gap: 4px;
    font-size: 18px;
    line-height: 1;
}
.lp-opinie__star { color: #e0d8c5; }
.lp-opinie__star.is-filled { color: #F5B400; }

/* Text */
.lp-opinie__text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    flex: 1 1 auto;
    font-style: italic;
    /* Truncate do 6 linii z „…" — wszystkie karty są równej wysokości */
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Name pod tekstem */
.lp-opinie__name {
    margin: 8px 0 0;
    padding-top: 14px;
    border-top: 1px solid #ece4d4;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #B58A2D;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .lp-opinie__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lp-opinie__grid { grid-template-columns: 1fr; }
}

/* ─────────── 7. FORMULARZ KONSULTACJI ─────────── */
.lp-form { padding: clamp(50px, 7vw, 90px) 0; background: #fff; }
.lp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.lp-form__title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
    color: #111; margin: 0 0 18px;
    letter-spacing: 0.02em;
}
.lp-form__title .gold { color: #5b9c5b; }
.lp-form__body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; line-height: 1.65; color: #333;
    margin: 0 0 20px;
}
.lp-form__body strong { color: #111; }
.lp-form__phone-lbl {
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px; color: #333; margin: 0 0 4px;
}
.lp-form__phone {
    display: inline-block; margin: 0 0 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px; font-weight: 600;
    color: #CAAB69; text-decoration: none;
}
.lp-form__cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; background: #5b9c5b; color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    margin: 0 0 12px;
    transition: background 0.25s ease;
}
.lp-form__cta:hover { background: #4a8a4a; }
.lp-form__link {
    display: block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: #B58A2D; text-decoration: none;
}

.lp-form__right {
    background: #fff;
    padding: clamp(20px, 3vw, 40px);
}
.lp-form__form-title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: 1.4rem; text-align: center;
    color: #111; margin: 0 0 24px;
    letter-spacing: 0.04em;
}
.lp-form__form { display: flex; flex-direction: column; gap: 14px; }
.lp-form__row-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-form__input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 0; border-bottom: 1px solid #ccc;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; color: #111;
    outline: none;
}
.lp-form__input:focus { border-bottom-color: #CAAB69; }
.lp-form__rodo {
    display: flex; align-items: flex-start; gap: 10px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px; color: #555; line-height: 1.5;
}
.lp-form__rodo a { color: #B58A2D; }
.lp-form__submit { margin-top: 12px; }

/* ─────────── 8. SUKNIA SZYTA NA MIARĘ ─────────── */
.lp-szyte { padding: clamp(60px, 8vw, 100px) 0; background: #F5EEE8; }
.lp-szyte__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(50px, 6vw, 100px);
    align-items: center;
}
.lp-szyte__text { max-width: 520px; }
.lp-szyte__title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: 0.02em; text-transform: uppercase;
    color: #111; margin: 0 0 22px;
}
.lp-szyte__body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px; line-height: 1.7; color: #333;
    margin: 0 0 32px;
}
.lp-szyte__body p { margin: 0 0 12px; }
.lp-szyte__body p:last-child { margin-bottom: 0; }
.lp-szyte__body strong { color: #111; font-weight: 700; }
.lp-szyte__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.lp-szyte__feature {
    display: flex; align-items: flex-start; gap: 18px;
}
.lp-szyte__feature-ico {
    width: 44px; height: 44px; object-fit: contain; flex-shrink: 0;
    /* Złoty filter na ikonach */
    filter: brightness(0) saturate(100%) invert(58%) sepia(54%) saturate(540%) hue-rotate(8deg) brightness(89%) contrast(88%);
}
.lp-szyte__feature-check {
    color: #B58A2D; font-weight: 700; font-size: 22px;
    flex-shrink: 0;
}
.lp-szyte__feature-text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; line-height: 1.5; color: #555;
}
.lp-szyte__feature-text strong {
    display: block;
    color: #111;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
}
.lp-szyte__media {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    max-width: 640px;
}
.lp-szyte__img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

/* ─────────── 9. iDEO JAKO PIERWSZE ─────────── */
.lp-ideo { padding: clamp(60px, 8vw, 100px) 0; background: #fff; }
.lp-ideo__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(50px, 6vw, 100px);
    align-items: center;
}
.lp-ideo__media {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    max-width: 640px;
}
.lp-ideo__img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.lp-ideo__text { max-width: 560px; }
.lp-ideo__title {
    font-family: "Cormorant Garamond", serif; font-weight: 400;
    font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
    line-height: 1.2; letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111; margin: 0 0 24px;
}
.lp-ideo__title strong { font-weight: 700; }
.lp-ideo__body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px; line-height: 1.7; color: #333;
    margin: 0 0 28px;
}
.lp-ideo__body strong { color: #111; font-weight: 700; }
.lp-ideo__body p { margin: 0 0 10px; }
.lp-ideo__body p:last-child { margin-bottom: 0; }

.lp-ideo__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: #B58A2D;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #B58A2D;
    margin: 0 0 28px;
    transition: background 0.25s ease, color 0.25s ease;
}
.lp-ideo__cta:hover, .lp-ideo__cta:focus-visible { background: #fff; color: #B58A2D; }
.lp-ideo__cta-arrow { flex-shrink: 0; }

.lp-ideo__note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    font-style: normal;
}
.lp-ideo__note-ico {
    flex-shrink: 0;
    color: #B58A2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lp-ideo__note-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Source Sans 3", sans-serif;
}
.lp-ideo__note-title {
    font-size: 14px;
    font-weight: 700;
    color: #B58A2D;
    letter-spacing: 0.02em;
}
.lp-ideo__note-sub {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* ─────────── 10. FAQ ─────────── */
.lp-faq { padding: clamp(50px, 7vw, 90px) 0; background: #fff; }
.lp-faq__title {
    font-family: "Cormorant Garamond", serif; font-weight: 500;
    font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
    text-align: center; color: #111;
    margin: 0 0 clamp(30px, 4vw, 50px);
    letter-spacing: 0.02em;
}
.lp-faq__list { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; }
.lp-faq__item { border-bottom: 1px solid #e8e0d3; }
.lp-faq__details { padding: 18px 0; }
.lp-faq__q {
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; list-style: none;
    font-family: "Source Sans 3", sans-serif;
    font-size: 15px; font-weight: 600;
    color: #111;
    gap: 16px;
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__plus {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px; color: #CAAB69; flex-shrink: 0;
    transition: transform 0.3s ease;
}
.lp-faq__details[open] .lp-faq__plus { transform: rotate(45deg); }
.lp-faq__a {
    margin: 14px 0 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px; line-height: 1.65; color: #333;
}
.lp-faq__a p { margin: 0 0 10px; }
.lp-faq__a p:last-child { margin-bottom: 0; }

/* ═════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .lp-hero__side { display: none; }
    .lp-experience__side { display: none; }
    .lp-kroki__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-wszystko__grid { grid-template-columns: 1fr; }
    .lp-kolekcja__row { grid-template-columns: 1fr; }
    .lp-kolekcja__card { flex-basis: calc((100% - 36px) / 3); }
    .lp-opinie__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-form__row { grid-template-columns: 1fr; }
    .lp-szyte__row, .lp-ideo__row { grid-template-columns: 1fr; }
    /* Sekcja "iDEO jako pierwsze..." — tekst NAD obrazem na mobile (zamiana miejscami) */
    .lp-ideo__row { display: flex !important; flex-direction: column-reverse !important; gap: 24px !important; }
}
@media (max-width: 700px) {
    .lp-kroki__grid { grid-template-columns: 1fr; }
    .lp-opinie__grid { grid-template-columns: 1fr; }
    .lp-form__row-inputs { grid-template-columns: 1fr; }
}

/* ── lp-kolekcja MOBILE (≤ 900px) — identyczny układ jak home-modele:
      aside (tytuł/body/CTA) NAD karuzelą, 2 karty na ekran, bez strzałek ── */
@media (max-width: 900px) {
    .lp-kolekcja {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .lp-kolekcja__row {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 24px !important;
    }
    .lp-kolekcja__aside {
        text-align: center !important;
        padding: 0 16px !important;
    }
    .lp-kolekcja__title { text-align: center !important; }
    .lp-kolekcja__body  { text-align: center !important; }
    .lp-kolekcja__cta   { display: inline-block !important; }
    .lp-kolekcja__carousel { padding: 0 !important; }
    .lp-kolekcja__track {
        gap: 12px !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
    .lp-kolekcja__card {
        flex: 0 0 calc((100vw - 44px) / 2) !important;
        max-width: calc((100vw - 44px) / 2) !important;
    }
    .lp-kolekcja__btn--prev,
    .lp-kolekcja__btn--next,
    .suknia-carousel__btn { display: none !important; }
}

/* ═════ 6b. CTA "Umów przymiarkę" pod opiniami ═════ */
.lp-cta-przymiarka {
    padding: clamp(40px, 6vw, 80px) 20px clamp(60px, 8vw, 100px);
    background: #fff;
    text-align: center;
}
.lp-cta-przymiarka__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.lp-cta-przymiarka__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 56px;
    background: linear-gradient(135deg, #CAAB69 0%, #B58A2D 100%);
    color: #fff;
    font-family: "Cormorant Garamond", "Source Sans 3", sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;                       /* pill shape — eleganckie zaokrąglone */
    box-shadow: 0 6px 20px rgba(181, 138, 45, 0.35), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, background 0.3s ease;
}
.lp-cta-przymiarka__btn svg { transition: transform 0.3s cubic-bezier(.2,.8,.2,1); }
.lp-cta-przymiarka__btn:hover {
    background: linear-gradient(135deg, #B58A2D 0%, #8a6920 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(138, 105, 32, 0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.lp-cta-przymiarka__btn:hover svg { transform: translateX(6px); }
.lp-cta-przymiarka__btn:focus-visible { outline: 2px solid #CAAB69; outline-offset: 4px; }
.lp-cta-przymiarka__btn:active { transform: translateY(-1px) scale(0.99); }

.lp-cta-przymiarka__micro {
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #6b6258;
    margin: 0 auto;
    max-width: 460px;
    text-align: center !important;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .lp-cta-przymiarka__btn { padding: 16px 28px; font-size: 14px; width: 100%; max-width: 320px; justify-content: center; }
    .lp-cta-przymiarka__micro { font-size: 13px; padding: 0 12px; }
}

/* Wariant CTA wewnątrz hero — bez dodatkowego paddingu i białego tła (zachowuje tło hero) */
.lp-cta-przymiarka--in-hero {
    background: transparent;
    padding: 20px 0 30px;
}

/* ─────────── 1b. SZYBKIE USP — 4 kafelki (prosty layout, gold dividers) ─────────── */
.lp-usp {
    background: #fff;
    padding: clamp(40px, 6vw, 80px) 0;
    border-top: 1px solid rgba(202, 171, 105, 0.18);
    border-bottom: 1px solid rgba(202, 171, 105, 0.18);
}
.lp-usp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 48px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-usp__item {
    text-align: center;
    padding: 0 8px;
    position: relative;
}
.lp-usp__item + .lp-usp__item::before {
    content: "";
    position: absolute;
    left: calc(-1 * clamp(10px, 1.5vw, 24px));
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(202, 171, 105, 0.25);
}
.lp-usp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    color: #CAAB69;
}
.lp-usp__icon svg { width: 100%; height: 100%; }
.lp-usp__icon-img { width: 56px; height: 56px; object-fit: contain; }
.lp-usp__title {
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.lp-usp__desc {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0;
}

@media (max-width: 880px) {
    .lp-usp__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .lp-usp__item + .lp-usp__item::before { display: none; }
}
@media (max-width: 480px) {
    .lp-usp { padding: 40px 0; }
    .lp-usp__grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-usp__icon { width: 48px; height: 48px; margin-bottom: 12px; }
}

/* ─────────── 1c. MANIFEST — „Nie musisz się odchudzać" (clean editorial) ─────────── */
.lp-manifest {
    background: #FAF7F2;
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
/* Subtelne dekoracyjne linie u góry i dołu sekcji (gold gradient) */
.lp-manifest::before,
.lp-manifest::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 100px);
    height: 1px;
    background: linear-gradient(90deg, transparent, #CAAB69, transparent);
}
.lp-manifest::before { top: 32px; }
.lp-manifest::after  { bottom: 32px; }

.lp-manifest__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    text-align: center;
}

/* === EYEBROW === */
.lp-manifest__eyebrow {
    font-family: "Source Sans 3", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #CAAB69;
    margin: 0 0 28px;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 36px;
}
.lp-manifest__eyebrow::before,
.lp-manifest__eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: #CAAB69;
}
.lp-manifest__eyebrow::before { left: 0; }
.lp-manifest__eyebrow::after  { right: 0; }

/* === TYTUŁ — identyczny rozmiar/font jak .lp-wszystko__title === */
.lp-manifest__title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
    text-align: center;
    max-width: 880px;
    margin: 0 auto clamp(30px, 4vw, 50px);
}
.lp-manifest__title-pre,
.lp-manifest__title-post,
.lp-manifest__title-strike { display: inline; }

/* „NIE MUSISZ SIĘ" — bold */
.lp-manifest__title-pre { font-weight: 700; }

.lp-manifest__title-strike {
    position: relative;
    color: #6b6258;
    padding: 0 0.05em;
    white-space: nowrap;
    font-style: italic;
}
.lp-manifest__strike-line {
    position: absolute;
    left: 0;
    top: 56%;
    height: 2px;
    width: 0;
    background: #CAAB69;
    transform-origin: left center;
    transition: width 0.85s cubic-bezier(0.55, 0, 0.25, 1);
}
.lp-manifest__title-strike.is-struck .lp-manifest__strike-line { width: 100%; }
.lp-manifest__title-post em {
    font-style: italic;
    color: #CAAB69;
    font-weight: 700;             /* „IDEALNĄ" — bold gold italic */
}

/* === DEKORACYJNY ORNAMENT — gold rhombus nad treścią === */
.lp-manifest__ornament {
    display: block;
    width: 8px;
    height: 8px;
    background: #CAAB69;
    transform: rotate(45deg);
    margin: 0 auto clamp(28px, 3.5vw, 44px);
    opacity: 0.7;
}

/* === KOLUMNY — uproszczone, single column z body centered === */
.lp-manifest__columns {
    display: block;
}
.lp-manifest__aside { display: none; }  /* aside ukryty — używamy dekoracyjnego rhombusa zamiast pionowej kreski */

/* === BODY === */
.lp-manifest__body {
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.8;
    color: #3a3a3a;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.005em;
}
.lp-manifest__body p { margin: 0 0 18px; }
.lp-manifest__body p:last-child { margin-bottom: 0; }
.lp-manifest__body strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* === DROP CAP wyłączony w pull-quote style (mniej formalne) === */
.lp-manifest__body--dropcap > p:first-of-type::first-letter {
    font-family: inherit;
    float: none;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
}

/* === PODPIS === */
.lp-manifest__footer {
    margin-top: clamp(40px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.lp-manifest__divider {
    display: block;
    width: 60px;
    height: 1px;
    background: #CAAB69;
    margin: 0 auto 18px;
}
.lp-manifest__signature {
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(15px, 1.2vw, 17px);
    color: #CAAB69;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .lp-manifest { padding: 60px 0; }
    /* font-size przez clamp na desktop — mobile dziedziczy */
    .lp-manifest__body { font-size: 16px; }
    .lp-manifest__eyebrow { font-size: 10px; letter-spacing: 0.24em; padding: 0 28px; }
    .lp-manifest__eyebrow::before,
    .lp-manifest__eyebrow::after { width: 18px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .lp-manifest__strike-line { transition: none; }
}

/* ─────────── 1d. ZNAJDŹ SWOJĄ SUKNIĘ — 4 kafelki sylwetki ─────────── */
.lp-sylwetka {
    background: #fff;
    padding: clamp(70px, 9vw, 120px) 0;
}
.lp-sylwetka__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 60px);
    padding: 0 16px;
}
.lp-sylwetka__eyebrow {
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #CAAB69;
    margin: 0 0 16px;
}
/* Identyczny rozmiar/font jak .lp-wszystko__title */
.lp-sylwetka__title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
    max-width: 880px;
    margin: 0 auto 16px;
}
.lp-sylwetka__title em { font-style: italic; color: #B58A2D; font-weight: 700; }
.lp-sylwetka__subtitle {
    font-family: "Source Sans 3", sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

/* === GRID 4 KAFELKI === */
.lp-sylwetka__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.5vw, 22px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-sylwetka__item { display: flex; }

/* === KARTA === */
.lp-sylwetka__card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.5s cubic-bezier(.2,.7,.3,1), box-shadow 0.5s ease;
    will-change: transform;
}
.lp-sylwetka__card-img {
    position: absolute; inset: 0;
    overflow: hidden;
}
.lp-sylwetka__img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.lp-sylwetka__card-img--placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 100%);
}

/* === GRADIENT OVERLAY === */
.lp-sylwetka__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.82) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

/* === TREŚĆ KAFELKA === */
.lp-sylwetka__content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: clamp(18px, 2.2vw, 30px);
    z-index: 2;
}
.lp-sylwetka__label {
    display: inline-block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #CAAB69;
    margin-bottom: 10px;
}
.lp-sylwetka__card-title {
    display: block;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(20px, 1.9vw, 26px);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
}
.lp-sylwetka__line {
    display: block;
    width: 30px;
    height: 2px;
    background: #CAAB69;
    transition: width 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* === CTA reveal pod tytułem (chowane domyślnie, pojawia się przy hover) === */
.lp-sylwetka__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #CAAB69;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.2,.7,.3,1);
    pointer-events: none;
}
.lp-sylwetka__cta svg { transition: transform 0.4s cubic-bezier(.2,.7,.3,1); }

/* === RAMKA GOLD na karcie — pojawia się przy hover === */
.lp-sylwetka__card::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(202, 171, 105, 0);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.5s ease, inset 0.5s cubic-bezier(.2,.7,.3,1);
}

/* === HOVER === */
a.lp-sylwetka__card:hover,
a.lp-sylwetka__card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(202, 171, 105, 0.4);
}
a.lp-sylwetka__card:hover .lp-sylwetka__img,
a.lp-sylwetka__card:focus-visible .lp-sylwetka__img {
    transform: scale(1.1);
}
a.lp-sylwetka__card:hover .lp-sylwetka__overlay,
a.lp-sylwetka__card:focus-visible .lp-sylwetka__overlay {
    background: linear-gradient(180deg, rgba(202,171,105,0.15) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.92) 100%);
}
a.lp-sylwetka__card:hover .lp-sylwetka__line,
a.lp-sylwetka__card:focus-visible .lp-sylwetka__line {
    width: 80px;
    background: #fff;
}
a.lp-sylwetka__card:hover .lp-sylwetka__cta,
a.lp-sylwetka__card:focus-visible .lp-sylwetka__cta {
    opacity: 1;
    transform: translateY(0);
}
a.lp-sylwetka__card:hover .lp-sylwetka__cta svg,
a.lp-sylwetka__card:focus-visible .lp-sylwetka__cta svg {
    transform: translateX(4px);
}
a.lp-sylwetka__card:hover::after,
a.lp-sylwetka__card:focus-visible::after {
    border-color: rgba(202, 171, 105, 0.6);
}
a.lp-sylwetka__card:active {
    transform: translateY(-4px) scale(0.99);
}
a.lp-sylwetka__card:focus-visible {
    outline: 2px solid #CAAB69;
    outline-offset: 3px;
}

/* === STOPKA === */
.lp-sylwetka__footer {
    text-align: center;
    margin: clamp(30px, 4vw, 44px) auto 0;
    max-width: 600px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
    .lp-sylwetka__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
    .lp-sylwetka { padding: 60px 0; }
    .lp-sylwetka__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .lp-sylwetka__card-title { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
    .lp-sylwetka__card-title-last { display: block; }   /* ostatnie słowo zawsze na nowej linii (mobile) */
    .lp-sylwetka__label { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 8px; }
    .lp-sylwetka__content { padding: 14px; }
    .lp-sylwetka__line { width: 24px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .lp-sylwetka__img,
    .lp-sylwetka__overlay,
    .lp-sylwetka__line { transition: none; }
}
