.s-restaurant-story {
    background-color: #18191F;
    padding: 80px 0;
    direction: rtl;
}

/* --- Rows container --- */
.restaurant-story__rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* --- Individual row --- */
.restaurant-story__row {
    display: flex;
    align-items: center;
    gap: 37px;
}

/* Even rows: flip so image appears on the opposite side */
.restaurant-story__row:nth-child(even) {
    flex-direction: row-reverse;
}

/* --- Image --- */
.restaurant-story__image-wrap {
    flex-shrink: 0;
    width: 646px;
    height: 485px;
    overflow: hidden;
}

.restaurant-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Text content --- */
.restaurant-story__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
}

.restaurant-story__header {
    display: flex;
    flex-direction: column;
}

.restaurant-story__subtitle {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 29px;
    color: #fff;
    margin: 0;
    line-height: normal;
}

.restaurant-story__title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: normal;
    margin: 0;
    background: linear-gradient(270deg, #E3B407 0%, #FFEECB 81.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Body paragraphs --- */
.s-restaurant-story .restaurant-story__body,
.s-restaurant-story .restaurant-story__body p {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 29px;
    color: #fff;
    line-height: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.s-restaurant-story .restaurant-story__body p {
    margin: 0;
}

.s-restaurant-story .restaurant-story__body p + p {
    margin-top: 11px;
}

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
    .s-restaurant-story {
        padding: 60px 0;
    }

    .restaurant-story__rows {
        gap: 27px;
    }

    .restaurant-story__image-wrap {
        width: 274px;
        height: 205px;
    }

    .restaurant-story__subtitle {
        font-size: 24px;
    }

    .restaurant-story__title {
        font-size: 60px;
    }

    .s-restaurant-story .restaurant-story__body,
    .s-restaurant-story .restaurant-story__body p {
        font-size: 15px;
    }
}

/* --- Mobile (≤767px) --- */
@media (max-width: 767px) {
    .s-restaurant-story {
        padding: 40px 0;
    }

    .restaurant-story__rows {
        gap: 30px;
    }

    .restaurant-story__row,
    .restaurant-story__row:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .restaurant-story__image-wrap {
        width: 274px;
        height: 205px;
    }

    .restaurant-story__subtitle {
        font-size: 20px;
    }

    .restaurant-story__title {
        font-size: 50px;
    }

    .s-restaurant-story .restaurant-story__body,
    .s-restaurant-story .restaurant-story__body p {
        font-size: 15px;
    }
}
