/* =========================================================
   LANA VAN MEIR — static pages from approved layouts
   charity / reviews / about
   ========================================================= */

.lvm-static-page {
    background: #fff;
    color: #111;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lvm-static-shell {
    /* Без боковых отступов: ровно по ширине контейнера */
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.lvm-static-page img {
    display: block;
    max-width: 100%;
}

.lvm-static-page p,
.lvm-static-page h1,
.lvm-static-page h2,
.lvm-static-page h3 {
    margin-top: 0;
}

.lvm-page-banner {
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------------
   БЛАГОТВОРИТЕЛЬНОСТЬ
   --------------------------------------------------------- */

.lvm-charity {
    padding-bottom: 155px;
}

.lvm-charity__content {
    width: calc(100% - 32px);
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 10px;
    line-height: 1.62;
}

.lvm-charity__title {
    margin: 0 0 19px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

.lvm-charity__content p {
    margin-bottom: 18px;
}

.lvm-charity__signature {
    margin-top: 10px;
    text-align: right;
}

/* ---------------------------------------------------------
   ОТЗЫВЫ
   --------------------------------------------------------- */

.lvm-reviews {
    padding-bottom: 195px;
}

.lvm-reviews__intro {
    max-width: 660px;
    margin: 14px auto 26px;
    padding: 0 16px;
    text-align: center;
    font-size: 9px;
    line-height: 1.45;
}

.lvm-reviews__title {
    margin: 0 0 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.lvm-reviews__intro p {
    margin: 0;
}

.lvm-reviews__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.lvm-reviews__column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.lvm-review-card {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    padding: 9px;
    background: #f1f1f1;
    font-size: 8px;
    line-height: 1.35;
}

.lvm-review-card__image {
    width: 66px;
    height: 88px;
    background: #fff;
    overflow: hidden;
}

.lvm-review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lvm-review-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.lvm-review-card__text {
    margin: 0 0 8px;
}

.lvm-review-card__meta {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    text-align: right;
    white-space: nowrap;
}

.lvm-review-card__date {
    color: #b6b6b6;
}

/* ---------------------------------------------------------
   О БРЕНДЕ
   --------------------------------------------------------- */

.lvm-about {
    padding: 24px 0 36px;
}

.lvm-about__inner {
    width: calc(100% - 32px);
    max-width: 640px;
    margin: 0 auto;
}

.lvm-about__page-title {
    margin: 0 0 32px;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

.lvm-about__hero {
    display: grid;
    grid-template-columns: 226px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid #e3e3e3;
}

.lvm-about__square {
    width: 226px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.lvm-about__square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lvm-about__lead {
    margin: 0 0 17px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}

.lvm-about__text {
    margin: 0;
    font-size: 9px;
    line-height: 1.45;
}

.lvm-about__materials {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 226px;
    gap: 70px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #e3e3e3;
}

.lvm-about__section-title {
    margin: 0 0 14px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

.lvm-about__materials .lvm-about__lead {
    font-size: 12px;
    margin-bottom: 16px;
}

.lvm-about__lines {
    padding: 17px 0 19px;
    border-bottom: 1px solid #e3e3e3;
}

.lvm-about__line-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.lvm-about__line-title {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 500;
}

.lvm-about__line-text {
    margin: 0;
    font-size: 9px;
    line-height: 1.35;
}

.lvm-about__plain-section {
    padding: 18px 0;
    border-bottom: 1px solid #e3e3e3;
}

.lvm-about__plain-section p:last-child {
    margin-bottom: 0;
}

.lvm-about__highlight {
    margin-top: 24px !important;
    font-weight: 500;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 900px) {
    .lvm-static-shell {
        width: 100%;
    }

    .lvm-reviews__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lvm-reviews__column:nth-child(3) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .lvm-charity,
    .lvm-reviews {
        padding-bottom: 70px;
    }

    .lvm-about {
        padding-top: 18px;
    }

    .lvm-about__hero,
    .lvm-about__materials {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lvm-about__square {
        width: min(100%, 360px);
        justify-self: center;
    }

    .lvm-about__materials .lvm-about__square {
        order: -1;
    }

    .lvm-about__line-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .lvm-static-shell {
        width: 100%;
    }

    .lvm-charity__content {
        width: calc(100% - 32px);
        margin-top: 22px;
        font-size: 11px;
    }

    .lvm-reviews__intro {
        font-size: 10px;
    }

    .lvm-reviews__columns {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }

    .lvm-reviews__column:nth-child(3) {
        grid-column: auto;
        display: flex;
    }

    .lvm-review-card {
        font-size: 9px;
    }

    .lvm-about__inner {
        width: calc(100% - 28px);
    }

    .lvm-about__lead {
        font-size: 15px;
    }

    .lvm-about__text,
    .lvm-about__line-text {
        font-size: 10px;
    }
}
