
:root {
    --jl-font-regular: 'Montserrat-Regular', Arial, sans-serif;
    --jl-font-bold: 'Montserrat-Bold', Arial, sans-serif;
    --jl-font-light: 'Montserrat-Light', Arial, sans-serif;

    --jl-primary: #ac2228;
    --jl-primary-dark: #8f1b20;
    --jl-white: #ffffff;
    --jl-black: #111111;
    --jl-text: #333333;
    --jl-text-light: #666666;
    --jl-gray-bg: #f5f5f5;
    --jl-gray-card: #fafafa;
    --jl-gray-line: #e8e8e8;

    --jl-radius-lg: 30px;
    --jl-radius-md: 22px;
    --jl-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --jl-shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Ueeshop reset */
html,
body {
    overflow-x: hidden;
}

body {
    background-color: var(--jl-gray-bg);
}

.visual_plugins_container {
    position: static;
}

body .header_content_show .header_content_height {
    height: 0 !important;
}

.ly_other_2,
.ly_poster_90,
.ly_other_1,
.ly_newsletter_1 {
    display: none;
}

.ly_article_1 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ly_article_1 .article_content_box .article_title {
    display: none;
}

.ly_article_1 .wide {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.jl-page,
.jl-page * {
    box-sizing: border-box;
}

.jl-page {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-color: var(--jl-gray-bg);
    color: var(--jl-text);
    font-family: var(--jl-font-regular);
}

.jl-page img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.jl-container {
    width: 1600px;
    max-width: calc(100% - 120px);
    margin: 0 auto;
}

.jl-section-title {
    margin: 0;
    color: var(--jl-black);
    font-family: var(--jl-font-bold);
    font-size: clamp(46px, 3.4vw, 68px);
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.jl-section-title span {
    color: var(--jl-primary);
}

.jl-section-subtitle {
    margin: 24px 0 0;
    color: var(--jl-text-light);
    font-family: var(--jl-font-light);
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 1.5;
    text-align: center;
}

/* Hero */
.jl-hero {
    position: relative;
    width: 100%;
    background-color: var(--jl-gray-bg);
}

.jl-hero-image {
    width: 100%;
    height: clamp(620px, 48vw, 860px);
    overflow: hidden;
    background-color: var(--jl-black);
}

.jl-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jl-hero-content {
    position: absolute;
    left: 50%;
    bottom: 48px;
    z-index: 2;
    width: 100%;
    transform: translateX(-50%);
}

.jl-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jl-hero-card {
    min-height: 210px;
    padding: 40px 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--jl-radius-md);
    background: linear-gradient(135deg, rgba(172, 34, 40, 0.95), rgba(143, 27, 32, 0.95));
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jl-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.jl-hero-card-title {
    margin: 0;
    color: var(--jl-white);
    font-family: var(--jl-font-bold);
    font-size: clamp(26px, 1.55vw, 32px);
    line-height: 1.3;
    text-align: center;
}

.jl-hero-card-text {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--jl-font-light);
    font-size: clamp(17px, 1.05vw, 20px);
    line-height: 1.65;
    text-align: center;
    word-break: break-word;
}

/* Development History */
.jl-history {
    position: relative;
    z-index: 1;
    padding: 118px 0 126px;
    overflow: hidden;
    background-color: var(--jl-gray-bg);
}

.jl-history-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.48;
}

.jl-history-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jl-history::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(245, 245, 245, 0.98) 0%,
        rgba(245, 245, 245, 0.91) 46%,
        rgba(245, 245, 245, 0.98) 100%
    );
}

.jl-timeline {
    position: relative;
    width: 1040px;
    max-width: 100%;
    margin: 88px auto 0;
    padding: 10px 0;
}

.jl-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--jl-primary) 8%,
        var(--jl-primary) 92%,
        transparent 100%
    );
}

.jl-timeline-item {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 0 28px;
}

.jl-timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-left: calc(50% + 44px);
}

.jl-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: calc(50% + 44px);
}

.jl-timeline-card {
    position: relative;
    width: 100%;
    min-height: 150px;
    padding: 32px 34px;
    border: 1px solid var(--jl-gray-line);
    border-radius: var(--jl-radius-md);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--jl-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jl-timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
}

.jl-timeline-item:nth-child(even) .jl-timeline-card {
    text-align: right;
}

.jl-timeline-card::before {
    content: "";
    position: absolute;
    top: 46px;
    width: 44px;
    height: 2px;
    background-color: var(--jl-primary);
}

.jl-timeline-item:nth-child(odd) .jl-timeline-card::before {
    right: 100%;
}

.jl-timeline-item:nth-child(even) .jl-timeline-card::before {
    left: 100%;
}

.jl-timeline-dot {
    position: absolute;
    top: 37px;
    left: 50%;
    z-index: 2;
    width: 22px;
    height: 22px;
    transform: translateX(-50%);
    border: 5px solid var(--jl-white);
    border-radius: 50%;
    background-color: var(--jl-primary);
    box-shadow: 0 0 0 4px rgba(172, 34, 40, 0.16);
}

.jl-timeline-year {
    margin: 0;
    color: var(--jl-primary);
    font-family: var(--jl-font-bold);
    font-size: clamp(34px, 2.15vw, 42px);
    line-height: 1;
}

.jl-timeline-year small {
    display: block;
    margin-top: 8px;
    color: var(--jl-text-light);
    font-family: var(--jl-font-light);
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.jl-timeline-text {
    margin: 24px 0 0;
    color: var(--jl-text);
    font-family: var(--jl-font-light);
    font-size: 19px;
    line-height: 1.55;
}

/* Social Responsibility */
.jl-social {
    padding: 108px 0 118px;
    background-color: var(--jl-white);
}

.jl-social-intro {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto 76px;
    color: var(--jl-text);
    font-family: var(--jl-font-light);
    font-size: clamp(19px, 1.18vw, 23px);
    line-height: 1.75;
    text-align: center;
}

.jl-social-intro-title {
    display: block;
    margin-bottom: 24px;
    color: var(--jl-black);
    font-family: var(--jl-font-bold);
    font-size: clamp(46px, 3.4vw, 68px);
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.jl-social-intro-title span {
    color: var(--jl-primary);
}

.jl-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jl-social-card {
    overflow: hidden;
    border: 1px solid var(--jl-gray-line);
    border-radius: var(--jl-radius-lg);
    background-color: var(--jl-gray-card);
    box-shadow: var(--jl-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jl-social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
}

.jl-social-card-image {
    position: relative;
    height: clamp(340px, 20vw, 420px);
    overflow: hidden;
    background-color: var(--jl-gray-bg);
}

.jl-social-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.jl-social-card:hover .jl-social-card-image img {
    transform: scale(1.04);
}

.jl-social-card-body {
    min-height: 360px;
    padding: 46px 38px 48px;
}

.jl-social-card-title {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: var(--jl-black);
    font-family: var(--jl-font-bold);
    font-size: clamp(22px, 1.35vw, 26px);
    line-height: 1.35;
}

.jl-social-card-title::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 6px;
    height: 26px;
    border-radius: 99px;
    background-color: var(--jl-primary);
}

.jl-social-card-text {
    margin: 30px 0 0;
    color: var(--jl-text);
    font-family: var(--jl-font-light);
    font-size: clamp(18px, 1.08vw, 21px);
    line-height: 1.72;
    word-break: break-word;
}

/* Responsive */
@media screen and (max-width: 1400px) {
    .jl-container {
        max-width: calc(100% - 90px);
    }

    .jl-hero-card {
        padding: 36px 34px;
    }

    .jl-hero-card-text {
        font-size: 17px;
    }

    .jl-social-card-image {
        height: 330px;
    }

    .jl-social-card-body {
        min-height: 340px;
    }
}

@media screen and (max-width: 1200px) {
    .jl-container {
        max-width: calc(100% - 64px);
    }

    .jl-hero-image {
        height: 640px;
    }

    .jl-hero-content {
        bottom: 34px;
    }

    .jl-hero-cards {
        gap: 20px;
    }

    .jl-hero-card {
        min-height: 210px;
        padding: 30px 26px;
    }

    .jl-hero-card-title {
        font-size: 24px;
    }

    .jl-hero-card-text {
        font-size: 16px;
    }

    .jl-timeline {
        width: 920px;
    }

    .jl-social-grid {
        gap: 22px;
    }
}

@media screen and (max-width: 991px) {
    .jl-container {
        max-width: calc(100% - 40px);
    }

    .jl-hero-image {
        height: 420px;
    }

    .jl-hero-content {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin-top: -52px;
        transform: none;
    }

    .jl-hero-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jl-hero-card {
        min-height: auto;
        padding: 30px 26px;
        background: var(--jl-primary);
    }

    .jl-history {
        padding: 72px 0 82px;
    }

    .jl-section-title,
    .jl-social-intro-title {
        font-size: 42px;
    }

    .jl-section-subtitle {
        font-size: 22px;
    }

    .jl-timeline {
        margin-top: 56px;
    }

    .jl-timeline::before {
        left: 11px;
    }

    .jl-timeline-item,
    .jl-timeline-item:nth-child(odd),
    .jl-timeline-item:nth-child(even) {
        justify-content: flex-start;
        margin-bottom: 22px;
        padding-left: 54px;
        padding-right: 0;
    }

    .jl-timeline-item:nth-child(even) .jl-timeline-card {
        text-align: left;
    }

    .jl-timeline-dot {
        left: 11px;
    }

    .jl-timeline-card::before,
    .jl-timeline-item:nth-child(odd) .jl-timeline-card::before,
    .jl-timeline-item:nth-child(even) .jl-timeline-card::before {
        left: auto;
        right: 100%;
        width: 32px;
    }

    .jl-social {
        padding: 76px 0 86px;
    }

    .jl-social-intro {
        margin-bottom: 46px;
        text-align: left;
    }

    .jl-social-grid {
        grid-template-columns: 1fr;
    }

    .jl-social-card-image {
        height: 420px;
    }

    .jl-social-card-body {
        min-height: auto;
    }
}

@media screen and (max-width: 750px) {
    .jl-container {
        max-width: calc(100% - 32px);
    }

    .jl-section-title,
    .jl-social-intro-title {
        font-size: 34px;
        text-align: left;
    }

    .jl-section-subtitle {
        margin-top: 16px;
        font-size: 18px;
        text-align: left;
    }

    .jl-hero-image {
        height: 320px;
    }

    .jl-hero-card {
        border-radius: 18px;
    }

    .jl-hero-card-title {
        font-size: 24px;
    }

    .jl-hero-card-text {
        margin-top: 16px;
        font-size: 16px;
    }

    .jl-history {
        padding: 56px 0 64px;
    }

    .jl-timeline {
        margin-top: 42px;
    }

    .jl-timeline-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 18px;
    }

    .jl-timeline-year {
        font-size: 30px;
    }

    .jl-timeline-text {
        margin-top: 18px;
        font-size: 16px;
    }

    .jl-social {
        padding: 58px 0 68px;
    }

    .jl-social-intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .jl-social-card {
        border-radius: 22px;
    }

    .jl-social-card-image {
        height: 280px;
    }

    .jl-social-card-body {
        padding: 30px 24px 34px;
    }

    .jl-social-card-title {
        font-size: 20px;
    }

    .jl-social-card-text {
        margin-top: 22px;
        font-size: 16px;
    }
}
