/*
Theme Name: JUNSHI
Text Domain: junshi
*/

:root {
    --junshi-header-height: 88px;
    --junshi-header-border: rgba(255, 255, 255, 0.12);
    --junshi-header-text: rgba(255, 255, 255, 0.82);
    --junshi-header-text-strong: #ffffff;
    --junshi-header-muted: rgba(255, 255, 255, 0.56);
    --junshi-header-cta-bg: rgba(214, 221, 232, 0.88);
    --junshi-header-cta-text: #ffffff;
    --junshi-page-bg: #f4f1ec;
    --junshi-page-hero-pad-top: 100px;
    --junshi-page-hero-pad-bottom: 80px;
    --junshi-page-hero-min-height: 340px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
}

body {
    margin: 0;
    padding-top: var(--junshi-header-offset, var(--junshi-header-height));
    background: var(--junshi-page-bg);
    color: #1f1f1f;
    font-family: "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.site-main {
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    min-height: var(--junshi-header-height);
    overflow: visible;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.54), rgba(12, 12, 14, 0.22));
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.site-header.is-stuck {
    background: rgba(10, 10, 12, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.site-header.is-stuck::before {
    opacity: 0;
}

.site-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--junshi-header-height);
    margin: 0 auto;
    padding: 0 140px 0 0;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-header__aside {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.site-nav {
    position: relative;
    z-index: 2;
}

.site-nav--left,
.site-nav--right {
    justify-self: center;
}

.site-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-brand__image {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list li {
    position: relative;
}

.site-nav__list > li {
    display: flex;
    align-items: center;
    min-height: var(--junshi-header-height);
}

.site-nav__list > li + li::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.site-nav__list a {
    color: var(--junshi-header-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav__list > li > a {
    display: inline-flex;
    align-items: center;
    min-height: var(--junshi-header-height);
}

.site-nav__list a:hover {
    color: var(--junshi-header-text-strong);
}

.site-nav__list > li.menu-item-has-children > a {
    gap: 10px;
}

.site-nav__list > li.menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.site-nav__list > li.menu-item-has-children:hover > a::after,
.site-nav__list > li.menu-item-has-children:focus-within > a::after,
.site-nav__list > li.menu-item-has-children.is-open > a::after {
    transform: rotate(225deg);
    margin-top: 3px;
}

.site-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 220px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    background: rgba(11, 11, 13, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-nav__list > li.menu-item-has-children:hover > .sub-menu,
.site-nav__list > li.menu-item-has-children:focus-within > .sub-menu,
.site-nav__list > li.menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav__list .sub-menu li {
    min-height: 0;
}

.site-nav__list .sub-menu li + li::before {
    display: none;
}

.site-nav__list .sub-menu a {
    display: block;
    padding: 12px 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 88px;
    padding: 0 22px;
    background: var(--junshi-header-cta-bg);
    color: var(--junshi-header-cta-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.site-header__cta:hover {
    background: rgba(197, 205, 218, 0.94);
}

.site-header__toggle {
    display: none;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 24px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.site-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--junshi-header-text-strong, #fff);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__toggle span + span {
    margin-top: 7px;
}

.site-header.is-menu-open .site-header__toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1180px) {
    .site-header__toggle {
        display: block;
    }

    .site-header__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 14px 60px;
        min-height: auto;
    }

    .site-header__nav {
        flex-wrap: wrap;
        width: 100%;
    }

    .site-brand {
        display: flex;
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 4px;
    }

    .site-brand__image {
        max-width: 180px;
        max-height: 48px;
    }

    .site-nav--left,
    .site-nav--right,
    .site-header__aside .site-header__cta {
        display: none;
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .site-header.is-menu-open .site-nav--left,
    .site-header.is-menu-open .site-nav--right,
    .site-header.is-menu-open .site-header__aside .site-header__cta {
        display: block;
    }

    .site-header__nav {
        flex-direction: column;
        gap: 0;
    }

    .site-header__aside {
        position: static;
        width: 100%;
        height: auto;
        justify-content: center;
    }

    .site-nav__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 18px;
    }

    .site-nav__list > li {
        min-height: 0;
    }

    .site-nav__list > li > a {
        min-height: 0;
        padding: 8px 0;
    }

    .site-nav__list > li + li::before {
        display: none;
    }

    .site-nav__list > li.menu-item-has-children {
        flex-direction: column;
        align-items: center;
    }

    .site-nav__list .sub-menu {
        position: static;
        left: auto;
        min-width: 0;
        width: 100%;
        margin-top: 8px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .site-nav__list > li.menu-item-has-children.is-open > .sub-menu,
    .site-nav__list > li.menu-item-has-children:focus-within > .sub-menu {
        display: flex;
    }

    .site-nav__list .sub-menu a {
        padding: 8px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.72);
    }

    .site-header__cta {
        display: none;
        min-height: 44px;
        width: auto;
        border-radius: 999px;
        margin: 12px auto 4px;
    }

    .site-header.is-menu-open .site-header__aside .site-header__cta {
        display: inline-flex;
    }

    .site-header.is-menu-open {
        background: rgba(12, 12, 14, 0.95) !important;
        backdrop-filter: blur(20px);
    }
}

.site-fixed-actions {
    position: fixed;
    right: clamp(14px, 2vw, 26px);
    bottom: clamp(22px, 4vw, 46px);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.site-fixed-actions__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    color: #5b4638;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 226, 216, 0.78)),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(54, 42, 34, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.site-fixed-actions__item::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: inherit;
    border: 1px solid rgba(138, 103, 77, 0.14);
    pointer-events: none;
}

.site-fixed-actions__item svg,
.site-fixed-actions__item img {
    position: relative;
    z-index: 1;
    display: block;
}

.site-fixed-actions__item:hover,
.site-fixed-actions__item:focus-visible {
    color: #ffffff;
    border-color: rgba(138, 103, 77, 0.36);
    background: linear-gradient(145deg, #9a7457, #6f4f39);
    box-shadow: 0 22px 54px rgba(77, 52, 35, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    outline: none;
}

.site-fixed-actions__label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    white-space: nowrap;
    background: rgba(36, 28, 22, 0.86);
    box-shadow: 0 12px 30px rgba(36, 28, 22, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translate(8px, -50%);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.site-fixed-actions__item:hover .site-fixed-actions__label,
.site-fixed-actions__item:focus-visible .site-fixed-actions__label {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.site-fixed-actions__top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
}

.site-fixed-actions__top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 720px) {
    .site-fixed-actions {
        right: 14px;
        bottom: 18px;
        gap: 9px;
    }

    .site-fixed-actions__item {
        width: 46px;
        height: 46px;
    }

    .site-fixed-actions__label {
        display: none;
    }
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - var(--junshi-header-offset, var(--junshi-header-height)));
    margin-top: calc(var(--junshi-header-offset, var(--junshi-header-height)) * -1);
    padding-top: var(--junshi-header-offset, var(--junshi-header-height));
    overflow: hidden;
    background: #0f0f10;
}

.hero-slider__viewport {
    position: relative;
    min-height: calc(100vh - var(--junshi-header-offset, var(--junshi-header-height)));
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    animation: junshiHeroFade 18s infinite;
    background-size: cover;
    background-position: center;
}

.hero-slide--one {
    background-image:
        linear-gradient(90deg, rgba(21, 17, 15, 0.28), rgba(21, 17, 15, 0.22)),
        url("assets/images/header/Banner-1.jpg");
}

.hero-slide--two {
    animation-delay: 6s;
    background-image:
        linear-gradient(90deg, rgba(16, 16, 16, 0.24), rgba(16, 16, 16, 0.2)),
        url("assets/images/header/Banner-2.jpg");
}

.hero-slide--three {
    animation-delay: 12s;
    background-image:
        linear-gradient(90deg, rgba(12, 12, 12, 0.24), rgba(12, 12, 12, 0.2)),
        url("assets/images/header/Banner-3.jpg");
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.54));
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 980px);
    padding: 80px 0 110px;
    text-align: center;
    color: #ffffff;
}

.hero-slide__eyebrow {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.72);
}

.hero-slide__title {
    margin: 0;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 700;
    line-height: 1.18;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-slide__text {
    width: min(100%, 700px);
    margin: 26px auto 0;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.86);
}

.hero-slide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 52px;
    margin-top: 34px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.hero-slider__indicators {
    position: absolute;
    top: 50%;
    right: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(-50%);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    animation: junshiHeroDot 18s infinite;
}

.hero-slider__dot:nth-child(2) {
    animation-delay: 6s;
}

.hero-slider__dot:nth-child(3) {
    animation-delay: 12s;
}

.hero-slider__scroll {
    position: absolute;
    left: 50%;
    bottom: 86px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.24em;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center;
}

@keyframes junshiHeroFade {
    0% { opacity: 0; pointer-events: none; }
    5% { opacity: 1; pointer-events: auto; }
    28% { opacity: 1; pointer-events: auto; }
    33% { opacity: 0; pointer-events: none; }
    100% { opacity: 0; pointer-events: none; }
}

@keyframes junshiHeroDot {
    0% { opacity: 0.35; transform: scale(1); }
    5% { opacity: 1; transform: scale(1.15); }
    28% { opacity: 1; transform: scale(1.15); }
    33% { opacity: 0.35; transform: scale(1); }
    100% { opacity: 0.35; transform: scale(1); }
}

@media (max-width: 980px) {
    .hero-slide__title {
        font-size: 44px;
    }

    .hero-slide__text {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .hero-slider,
    .hero-slider__viewport {
        min-height: calc(100svh - var(--junshi-header-height));
    }

    .hero-slider__indicators {
        right: 18px;
        gap: 10px;
    }

    .hero-slide__content {
        width: min(100% - 32px, 980px);
        padding: 48px 0 88px;
    }

    .hero-slide__eyebrow {
        font-size: 11px;
    }

    .hero-slide__title {
        font-size: 26px;
        line-height: 1.32;
    }

    .hero-slide__text {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-slide__button {
        min-width: 148px;
        min-height: 44px;
        margin-top: 22px;
        padding: 0 20px;
        font-size: 13px;
    }

    .hero-slider__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slide__title {
        font-size: 22px;
    }

    .hero-slide__text {
        font-size: 13px;
    }

    .museum_block .RWDservice011 .name {
        font-size: 22px;
    }

    .museum_block .RWDservice011 .title {
        font-size: 13px;
    }

    .museum_block .RWDservice011 .memo {
        font-size: 12px;
    }

    .marble_block .RWDProduct015__head__h1 {
        font-size: 24px;
    }

    .marble_block .title,
    .marble_block .product_box.is-featured .title {
        font-size: 18px;
    }

    .about_block .RWDedictor001 .main-title,
    .about_block .RWDnews008 .main-title {
        font-size: 24px;
    }

    .about_block .RWDedictor001 .sub-title {
        font-size: 15px;
    }

    .steps_block .main-title {
        font-size: 24px;
    }

    .steps_block__index {
        font-size: 28px;
    }

    .steps_block .box-item-title {
        font-size: 16px;
    }

    .steps_block__contact-phone {
        font-size: 26px;
    }
}

.museum_block {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 26px;
    min-height: 0;
    padding: 92px 48px 0;
    overflow: hidden;
    background: #f6f2ed;
}

.museum_block .panel_2 {
    position: relative;
    z-index: 2;
}

.museum_block .mu_left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    min-height: 0;
    padding: 34px 0 0;
}

.museum_block .mu_right {
    display: grid;
    gap: 16px;
    align-content: start;
}

.museum_block .RWDedictor,
.museum_block .RWDscore01,
.museum_block .RWDbtn01 {
    position: relative;
}

.museum_block .mu_left_feature {
    flex: 0 0 clamp(180px, 20vw, 260px);
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    height: clamp(180px, 20vw, 260px);
    min-height: 180px;
    max-height: 260px;
    cursor: default;
}

.museum_block .mu_left_feature__bg,
.museum_block .mu_left_feature__shadow,
.museum_block .mu_left_feature__content {
    position: absolute;
    inset: 0;
}

.museum_block .mu_left_feature__bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.museum_block .mu_left_feature__shadow {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.52) 100%);
    transition: background 0.32s ease;
}

.museum_block .mu_left_feature__content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 26px;
}

.museum_block .mu_left_feature__title {
    color: #ffffff;
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.2;
    transform: translateY(0);
    transition: transform 0.42s ease;
}

.museum_block .mu_left_feature__subtitle {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    letter-spacing: 0.12em;
    transform: translateY(0);
    transition: transform 0.42s ease;
}

.museum_block .mu_left_feature__desc {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.36s ease, transform 0.42s ease;
}

.museum_block .mu_left_feature:hover .mu_left_feature__bg {
    transform: scale(1.06);
}

.museum_block .mu_left_feature:hover .mu_left_feature__shadow {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.62) 100%);
}

.museum_block .mu_left_feature:hover .mu_left_feature__title,
.museum_block .mu_left_feature:hover .mu_left_feature__subtitle {
    transform: translateY(-8px);
}

.museum_block .mu_left_feature:hover .mu_left_feature__desc {
    opacity: 1;
    transform: translateY(0);
}

.museum_block .RWDservice011 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
    align-items: stretch;
}

.museum_block .main-title {
    margin: 32px 0 0;
    color: #43362c;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0.01em;
}

.museum_block .RWDedictor .sub-title {
    margin: 0;
    color: rgba(67, 54, 44, 0.82);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.06em;
}

.museum_block .score-mainblk {
    position: relative;
}

.museum_block .score-content {
    display: grid;
    gap: 0;
}

.museum_block .trigger-wrap,
.museum_block .trigger-prev,
.museum_block .trigger-next,
.museum_block .trigger-blk {
    display: none;
}

.museum_block .count-blk {
    display: block;
}

.museum_block .count-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 30px 0 0;
    border-top: 1px solid rgba(92, 76, 65, 0.14);
}

.museum_block .count-item {
    display: grid;
    gap: 12px;
}

.museum_block .count-item > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #2f2722;
}

.museum_block .count-num {
    font-size: clamp(54px, 4.4vw, 74px);
    font-weight: 500;
    line-height: 0.92;
}

.museum_block .count-str,
.museum_block .count-item > div:first-child span:not(.count-num) {
    color: rgba(78, 65, 55, 0.72);
    font-size: 18px;
}

.museum_block .count-title {
    color: rgba(73, 61, 53, 0.82);
    font-size: 16px;
    line-height: 1.5;
}

.museum_block .section-subject .sub-title {
    color: rgba(73, 61, 53, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.museum_block .btn-box {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.museum_block .btn-box .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 232px;
    min-height: 56px;
    padding: 0 34px;
    border: 1px solid rgba(119, 98, 80, 0.28);
    color: #5b483c;
    text-decoration: none;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.54);
    transition: transform 0.24s ease, background 0.24s ease;
}

.museum_block .btn-box .btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.82);
}

.museum_block .RWDservice011 .link_area {
    display: contents;
}

.museum_block .RWDservice011 .link_box {
    position: relative;
    display: block;
    min-height: 0;
    height: clamp(180px, 20vw, 260px);
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    background: #181512;
}

.museum_block .RWDservice011 .bg,
.museum_block .RWDservice011 .shadow,
.museum_block .RWDservice011 .mid_box {
    position: absolute;
    inset: 0;
}

.museum_block .RWDservice011 .bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.museum_block .RWDservice011 .shadow {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
        linear-gradient(0deg, rgba(16, 13, 12, 0.7), rgba(16, 13, 12, 0.12));
    transition: background-color 0.28s ease;
}

.museum_block .RWDservice011 .mid_box {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 24px;
}

.museum_block .RWDservice011 .name,
.museum_block .RWDservice011 .title,
.museum_block .RWDservice011 .memo {
    transition: transform 0.42s ease, opacity 0.42s ease;
}

.museum_block .RWDservice011 .name {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.12;
}

.museum_block .RWDservice011 .title {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    letter-spacing: 0.12em;
}

.museum_block .RWDservice011 .txt_box {
    display: grid;
    gap: 0;
    margin-top: 14px;
}

.museum_block .RWDservice011 .memo {
    width: min(100%, 250px);
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.75;
}

.museum_block .RWDservice011 .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-top: 12px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.32s ease, transform 0.42s ease;
    pointer-events: none;
}

.museum_block .RWDservice011 .circle {
    width: 38px;
    height: 38px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.32s ease 0.04s, transform 0.42s ease 0.04s, border-color 0.28s ease;
}

.museum_block .RWDservice011 .link_box:hover .bg {
    transform: scale(1.08);
}

.museum_block .RWDservice011 .link_box:hover .shadow {
    background-color: rgba(0, 20, 71, 0.28);
}

.museum_block .RWDservice011 .link_box:hover .name,
.museum_block .RWDservice011 .link_box:hover .title,
.museum_block .RWDservice011 .link_box:hover .memo {
    transform: translateY(-12px);
}

.museum_block .RWDservice011 .link_box:hover .more,
.museum_block .RWDservice011 .link_box:hover .circle {
    opacity: 1;
    transform: translateX(0);
}

.museum_block .RWDservice011 .link_box:hover .circle {
    border-color: rgba(255, 255, 255, 0.56);
}

.museum_block .RWDparallax_new {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.museum_block .RWDparallax_new .picbgbox {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('https://chenhowmarble.com/archive/image/model/index/museun_bg2.jpg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    opacity: 0.3;
}

.museum_block .RWDparallax_new .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(246, 242, 237, 0.9));
}

.museum-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.museum-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.marble_block {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #fbf8f4 0%, #f2ece5 100%);
}

.marble_block .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.marble_block .RWDProduct015 {
    display: grid;
    gap: 26px;
    align-items: start;
    width: 100%;
}

.marble_block .RWDProduct015__head {
    position: relative;
    top: auto;
    display: grid;
    gap: 10px;
    width: min(100%, 640px);
    padding: 0 0 0 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.marble_block .RWDProduct015__head__eyebrow {
    color: #9a7b63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.marble_block .RWDProduct015__head__h1 {
    color: #2e231c;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 500;
}

.marble_block .RWDProduct015__head__h2 {
    width: min(100%, 360px);
    color: rgba(58, 44, 35, 0.78);
    font-size: 17px;
    line-height: 1.85;
}

.marble_block .product_area {
    display: grid;
    width: 90%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, clamp(280px, 21vw, 390px));
    gap: 2px;
    align-items: stretch;
    justify-content: start;
}

.marble_block .product_box {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    float: none;
    width: auto;
}

.marble_block .product_box.is-featured,
.marble_block .product_box:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.marble_block .product_box:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.marble_block .product_box:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.marble_block .product_box:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.marble_block .product_box:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
}

.marble_block .product_box.is-featured .imgs_box,
.marble_block .product_box.is-featured .title,
.marble_block .product_box.is-featured .memo {
    margin: 0;
    padding: 0;
}

.marble_block .imgs_box {
    position: relative;
    height: 100%;
    margin: 0;
}

.marble_block .tab {
    display: none;
}

.marble_block .img_block {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #1c1714;
    aspect-ratio: auto;
}

.marble_block .img_block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(19, 15, 12, 0.04) 34%, rgba(19, 15, 12, 0.58) 100%);
    pointer-events: none;
}

.marble_block .product_box.is-featured .img_block {
    aspect-ratio: auto;
}

.marble_block .imgs {
    position: absolute;
    inset: 0;
    display: block;
}

.marble_block .imgs img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.55s ease;
}

.marble_block .imgs .hover {
    opacity: 0;
}

.marble_block .info {
    display: none;
}

.marble_block .title,
.marble_block .memo {
    position: absolute;
    left: 24px;
    z-index: 2;
    max-width: calc(100% - 48px);
    pointer-events: none;
}

.marble_block .title {
    bottom: 42px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 500;
}

.marble_block .memo {
    bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7;
}

.marble_block .product_box.is-featured .title {
    bottom: 46px;
    font-size: clamp(28px, 2.6vw, 38px);
}

.marble_block .product_box.is-featured .memo {
    bottom: 18px;
    font-size: 15px;
}

.marble_block .product_box:hover .imgs img {
    transform: scale(1.06);
}

.marble_block .product_box:hover .imgs .hover {
    opacity: 1;
}

.marble_block .more_product {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-width: 180px;
    min-height: 54px;
    padding: 0 30px;
    color: #5c4738;
    text-decoration: none;
    border: 1px solid rgba(115, 90, 73, 0.24);
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.24s ease, background 0.24s ease;
}

.marble_block .more_product:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
}

.marble_block .RWDparallax_new {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.marble_block .RWDparallax_new .picbgbox {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.chenhowmarble.com/archive/image/model/index/marble-bg2.jpg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    opacity: 0.16;
}

.marble_block .RWDparallax_new .overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.6), transparent 42%),
        linear-gradient(180deg, rgba(250, 246, 240, 0.78), rgba(242, 236, 229, 0.94));
}

.marble-reveal,
.marble-card-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.marble-reveal.is-visible,
.marble-card-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about_block {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 112px;
    background: #fbf9f6;
}

.about_block .ab_bg {
    position: relative;
    z-index: 1;
}

.about_block .RWDparallax_new {
    position: relative;
    overflow: hidden;
}

.about_block .RWDparallax_new .picbgbox {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(660px, 52vw, 920px);
    background-repeat: no-repeat;
    background-position: 22% 40%;
    background-size: cover;
}

.about_block .RWDparallax_new .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 9, 8, 0.16) 0%, rgba(11, 9, 8, 0.07) 34%, rgba(11, 9, 8, 0) 56%);
}

.about_block .ab_info {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 50vw;
}

.about_block .RWDedictor001 {
    min-height: clamp(590px, 46vw, 760px);
    padding: clamp(83px, 10.6vw, 200px) clamp(68px, 5.6vw, 96px) clamp(160px, 12vw, 210px);
    background: #050607;
    box-shadow: 0 28px 64px rgba(18, 15, 12, 0.24);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_block .RWDedictor001 .main-title,
.about_block .RWDedictor001 .sub-title,
.about_block .RWDedictor001 p {
    width: 100%;
}

.about_block .RWDedictor001 .main-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.2;
    font-weight: 500;
}

.about_block .RWDedictor001 .sub-title {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.65;
    font-weight: 500;
}

.about_block .RWDedictor001 p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.9;
}

.about_block .ab_special {
    position: relative;
    z-index: 4;
    margin-top: clamp(-122px, -8vw, -92px);
    padding: 0;
}

.about_block .ab_special > .container {
    width: 80vw;
    max-width: none;
    margin: 0 0 0 auto;
}

.about_block .RWDnews008 {
    display: grid;
    grid-template-columns: minmax(260px, 0.94fr) minmax(0, 2.06fr);
    align-items: stretch;
    min-height: 168px;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(247, 240, 232, 0.94)),
        url('https://www.chenhowmarble.com/archive/image/model/index/1721203507.jpg');
    background-position: center;
    background-size: cover;
    box-shadow: 0 20px 52px rgba(54, 42, 34, 0.14);
}

.about_block .RWDnews008 .section-subject.row,
.about_block .RWDnews008 .about_special_grid.row {
    margin: 0;
}

.about_block .RWDnews008 .section-subject {
    display: flex;
    align-items: center;
    padding: 28px 34px;
    border-right: 1px solid rgba(142, 116, 91, 0.22);
}

.about_block .RWDnews008 .section-subject .col-md-12 {
    float: none;
    width: auto;
    padding: 0;
}

.about_block .RWDnews008 .main-title {
    margin: 0;
    color: #725742;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.3;
    font-weight: 500;
}

.about_block .RWDnews008 .section-line,
.about_block .RWDnews008 .news-title {
    display: none;
}

.about_block .about_special_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.about_block .about_special_grid .item {
    position: relative;
    width: auto;
    padding: 0;
    float: none;
}

.about_block .about_special_grid .item + .item {
    border-left: 1px solid rgba(142, 116, 91, 0.18);
}

.about_block .about_special_grid .item:not(:last-child)::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: -12px;
    z-index: 2;
    transform: translateY(-50%);
    color: rgba(176, 143, 112, 0.62);
    font-size: 28px;
    line-height: 1;
}

.about_block .about_special_grid .item a {
    display: flex;
    min-height: 144px;
    padding: 24px 26px 24px 32px;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    text-decoration: none;
    transition: background 0.24s ease, color 0.24s ease;
}

.about_block .about_special_grid .item a:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.24);
}

.about_block .about_special_grid .news-text {
    color: #5f4836;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.55;
    font-weight: 500;
}

.about-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.steps_block {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
    padding: clamp(48px, 5vw, 80px) 0;
    background: linear-gradient(90deg, #fbf9f6 0%, #fbf9f6 100%, #f5efe7 72%, #efe5da 100%);
}

.steps_block::after {
    display: none;
}

.steps_block .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
}

.steps_block .RWDnews003 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(24px, 3vh, 40px);
    width: 100%;
    padding-left: clamp(28px, 7vw, 120px);
}

.steps_block .section-subject.row {
    margin: 0;
}

.steps_block .section-subject .col-md-12 {
    float: none;
    width: auto;
    padding: 0;
}

.steps_block .main-title {
    margin: 0;
    color: #2e231c;
    font-size: clamp(36px, 3vw, 54px);
    line-height: 1.2;
    font-weight: 500;
}

.steps_block .sub-title {
    margin: 12px 0 0;
    color: rgba(76, 61, 50, 0.72);
    font-size: 18px;
    line-height: 1.72;
    font-weight: 400;
}

.steps_block .section-line {
    display: none;
}

.steps_block__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 32vw);
    gap: 0;
    align-items: stretch;
    width: 100%;
    margin-top: 0;
}

.steps_block__flow.row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding-right: clamp(18px, 2vw, 32px);
}

.steps_block__item {
    position: relative;
    width: auto;
    min-width: 0;
    padding: 0;
    float: none;
}

.steps_block__index {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #746251;
    font-size: 38px;
    line-height: 1;
    font-weight: 300;
}

.steps_block__index::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(147, 126, 103, 0.18);
}

.steps_block .box-item-title {
    margin: 0;
    color: #352920;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}

.steps_block__copy {
    margin-top: 16px;
}

.steps_block__copy p,
.steps_block__note {
    margin: 0;
    color: rgba(90, 74, 61, 0.72);
    font-size: 14px;
    line-height: 1.9;
}

.steps_block__note {
    margin-top: 8px;
}

.steps_block__contact {
    position: relative;
    min-width: 0;
    padding-left: 0;
}

.steps_block__contact-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 20px clamp(24px, 2.4vw, 42px) 24px 0;
    background: transparent;
    backdrop-filter: none;
}

.steps_block__contact-mark {
    width: 18px;
    height: 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(176, 145, 111, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 0 5px rgba(214, 186, 148, 0.22);
}

.steps_block__contact-title {
    margin: 0;
    color: #3b2e25;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 500;
}

.steps_block__contact-text {
    margin: 12px 0 0;
    color: rgba(84, 68, 56, 0.74);
    font-size: 15px;
    line-height: 1.78;
}

.steps_block__contact-label {
    margin-top: 22px;
    color: rgba(102, 83, 68, 0.68);
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.16em;
}

.steps_block__contact-phone {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    color: #bf9558;
    font-size: clamp(30px, 2.2vw, 42px);
    line-height: 1.1;
    font-weight: 500;
    text-decoration: none;
}

.steps_block__contact-phone:hover {
    color: #a97d40;
}

.steps-reveal,
.steps-card-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.steps-reveal.is-visible,
.steps-card-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-section--stone {
    background: #f8f6f2;
}

.home-section--flow {
    background: #1b1918;
    color: #f5efe7;
}

.home-section--applications {
    background: #efe8df;
}

.home-section--cta {
    padding-top: 0;
    background: linear-gradient(180deg, #efe8df 0%, #e7ddd1 100%);
}

.section-shell {
    width: min(100% - 48px, 1240px);
    margin: 0 auto;
}

.section-shell--split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: start;
}

.section-shell--flow {
    align-items: center;
}

.section-heading__eyebrow {
    margin: 0 0 16px;
    color: #8c7562;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.section-heading__title {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 52px);
    line-height: 1.22;
    color: #201c19;
}

.section-heading__text {
    width: min(100%, 760px);
    margin: 22px 0 0;
    color: rgba(32, 28, 25, 0.74);
    font-size: 17px;
    line-height: 1.9;
}

.section-heading--centered {
    text-align: center;
}

.section-heading--centered .section-heading__text {
    margin-left: auto;
    margin-right: auto;
}

.home-section--flow .section-heading__eyebrow,
.home-section--flow .section-heading__text,
.home-section--flow .flow-item__step,
.home-section--flow .flow-item__text {
    color: rgba(245, 239, 231, 0.72);
}

.home-section--flow .section-heading__title,
.home-section--flow .flow-item__title {
    color: #ffffff;
}

.intro-copy {
    display: grid;
    gap: 22px;
}

.intro-copy p {
    margin: 0;
    color: rgba(32, 28, 25, 0.8);
    font-size: 17px;
    line-height: 1.95;
}

.intro-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 54px;
}

.intro-pillar,
.application-card {
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(131, 108, 85, 0.12);
    border-radius: 24px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
}

.intro-pillar__index {
    display: inline-block;
    margin-bottom: 20px;
    color: #a0846a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.intro-pillar__title,
.stone-card__title,
.flow-item__title,
.application-card__title,
.cta-panel__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
}

.intro-pillar__text,
.stone-card__text,
.flow-item__text,
.application-card__text,
.cta-panel__text {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.85;
}

.stone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.stone-card {
    position: relative;
    min-height: 360px;
    padding: 34px 30px;
    border-radius: 28px;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
}


.stone-card--warm {
    background:
        linear-gradient(180deg, rgba(173, 142, 117, 0.18), rgba(37, 31, 28, 0.16)),
        url("assets/images/header/Banner-1.jpg");
}

.stone-card--dark {
    background:
        linear-gradient(180deg, rgba(70, 70, 72, 0.1), rgba(16, 16, 16, 0.24)),
        url("assets/images/header/Banner-2.jpg");
}

.stone-card--light {
    background:
        linear-gradient(180deg, rgba(207, 192, 180, 0.08), rgba(29, 26, 24, 0.26)),
        url("assets/images/header/Banner-3.jpg");
}

.stone-card__eyebrow {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.flow-list {
    display: grid;
    gap: 18px;
}

.flow-item {
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.flow-item__step {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.application-card {
    background: rgba(255, 255, 255, 0.76);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 28px;
    align-items: center;
    padding: 46px 48px;
    border-radius: 30px;
    background: linear-gradient(135deg, #1f1b19 0%, #3a3029 100%);
    box-shadow: 0 24px 80px rgba(31, 27, 25, 0.16);
}

.cta-panel .section-heading__eyebrow,
.cta-panel__title,
.cta-panel__text {
    color: #ffffff;
}

.cta-panel__text {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.74);
}

.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.cta-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.cta-panel__button:hover,
.hero-slide__button:hover {
    transform: translateY(-1px);
}

.cta-panel__button--primary {
    background: #e7d3be;
    color: #211c18;
}

.cta-panel__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1080px) {
    .museum_block {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 72px 32px 0;
    }

    .museum_block .mu_left {
        padding: 0;
    }

    .museum_block .mu_left_feature {
        flex: 0 0 auto;
        height: 180px;
        max-height: 180px;
    }

    .museum_block .RWDservice011 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .museum_block .RWDservice011 .link_box {
        height: 380px;
        min-height: 0;
        transform: none;
    }

    .museum_block .count-page,
    .section-shell--split,
    .cta-panel,
    .stone-grid,
    .application-grid,
    .intro-pillars {
        grid-template-columns: 1fr;
    }

    .stone-card {
        min-height: 300px;
    }

    .cta-panel__actions {
        justify-content: flex-start;
    }

    .marble_block {
        padding: 68px 0 82px;
    }

    .marble_block .container {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .marble_block .RWDProduct015 {
        gap: 22px;
        width: 100%;
    }

    .marble_block .RWDProduct015__head {
        width: min(100%, 680px);
        padding-left: 18px;
    }

    .marble_block .product_area {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(2, clamp(220px, 24vw, 320px));
        gap: 2px;
    }

    .about_block .RWDparallax_new .picbgbox {
        height: clamp(620px, 64vw, 760px);
        min-height: 0;
        background-position: 18% 42%;
    }

    .about_block .ab_info {
        width: 50vw;
        margin-top: 0;
    }

    .about_block .RWDedictor001 {
        min-height: clamp(520px, 46vw, 620px);
        padding: 56px 40px clamp(120px, 10vw, 160px);
    }

    .about_block .RWDedictor001 .main-title {
        font-size: clamp(40px, 4.8vw, 52px);
    }

    .about_block .RWDedictor001 .sub-title {
        margin-top: 24px;
        font-size: clamp(19px, 2.2vw, 24px);
    }

    .about_block .RWDedictor001 p {
        font-size: 15px;
        line-height: 1.86;
    }

    .about_block .ab_special {
        margin-top: -72px;
        padding: 0;
    }

    .about_block .ab_special > .container {
        width: 50vw;
        margin-right: 0;
    }

    .about_block .RWDnews008 {
        grid-template-columns: minmax(220px, 0.96fr) minmax(0, 2.04fr);
        min-height: 150px;
    }

    .about_block .RWDnews008 .section-subject {
        padding: 28px 24px;
    }

    .about_block .RWDnews008 .main-title {
        font-size: clamp(28px, 2.8vw, 38px);
    }

    .about_block .about_special_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .about_block .about_special_grid .item a {
        min-height: 150px;
        padding: 22px 18px 22px 24px;
    }

    .about_block .about_special_grid .news-text {
        font-size: 19px;
        line-height: 1.56;
    }

    .steps_block {
        padding: 56px 0 60px;
        background: linear-gradient(180deg, #fbf9f6 0%, #fbf9f6 72%, #f2ebe2 72%, #efe7de 100%);
    }

    .steps_block .container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .steps_block .RWDnews003 {
        padding-left: 24px;
    }

    .steps_block__layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 52px;
    }

    .steps_block__flow.row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
        padding-right: 24px;
    }

    .steps_block__contact {
        padding-left: 24px;
    }

    .steps_block__contact-inner {
        min-height: 0;
        padding: 28px 28px 32px 0;
    }
}

@media (max-width: 720px) {
    .museum_block {
        padding: 56px 16px 0;
    }

    .museum_block .mu_left_feature {
        max-height: 220px;
        border-radius: 4px;
    }

    .museum_block .mu_left_feature img {
        border-radius: 4px;
    }

    .museum_block .main-title {
        margin-top: 20px;
        font-size: 30px;
        line-height: 1.22;
    }

    .museum_block .RWDedictor .sub-title,
    .museum_block .section-subject .sub-title,
    .museum_block .count-title,
    .museum_block .RWDservice011 .memo {
        font-size: 14px;
    }

    .museum_block .count-page {
        gap: 20px;
        padding-top: 22px;
    }

    .museum_block .count-num {
        font-size: 42px;
    }

    .museum_block .btn-box .btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        font-size: 15px;
    }

    .museum_block .RWDservice011 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .museum_block .RWDservice011 .link_box {
        min-height: 0;
    }

    .museum_block .RWDservice011 .name {
        font-size: 28px;
    }

    .home-section {
        padding: 76px 0;
    }

    .section-shell {
        width: min(100% - 32px, 1240px);
    }

    .section-heading__title,
    .intro-pillar__title,
    .stone-card__title,
    .flow-item__title,
    .application-card__title,
    .cta-panel__title {
        font-size: 24px;
    }

    .section-heading__text,
    .intro-copy p,
    .intro-pillar__text,
    .stone-card__text,
    .flow-item__text,
    .application-card__text,
    .cta-panel__text {
        font-size: 15px;
        line-height: 1.8;
    }

    .intro-pillar,
    .application-card,
    .flow-item,
    .stone-card,
    .cta-panel {
        padding: 24px;
    }

    .cta-panel__button {
        width: 100%;
    }

    .marble_block {
        padding: 60px 0 68px;
    }

    .marble_block .container {
        width: calc(100% - 32px);
        margin-left: 16px;
        margin-right: 16px;
    }

    .marble_block .RWDProduct015__head {
        width: 100%;
        padding: 0;
        gap: 10px;
    }

    .marble_block .RWDProduct015__head__h1 {
        font-size: 28px;
    }

    .marble_block .RWDProduct015__head__h2,
    .marble_block .memo {
        font-size: 14px;
        line-height: 1.75;
    }

    .marble_block .product_area {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
    }

    .marble_block .product_box.is-featured,
    .marble_block .product_box:nth-child(1),
    .marble_block .product_box:nth-child(2),
    .marble_block .product_box:nth-child(3),
    .marble_block .product_box:nth-child(4),
    .marble_block .product_box:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .marble_block .img_block,
    .marble_block .product_box.is-featured .img_block {
        aspect-ratio: 1.08;
    }

    .marble_block .title,
    .marble_block .product_box.is-featured .title {
        left: 18px;
        bottom: 58px;
        top: auto;
        max-width: calc(100% - 36px);
        font-size: 22px;
        line-height: 1.18;
    }

    .marble_block .memo,
    .marble_block .product_box.is-featured .memo {
        left: 18px;
        bottom: 18px;
        top: auto;
        max-width: calc(100% - 36px);
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-top: 0;
        font-size: 13px;
        line-height: 1.45;
    }

    .marble_block .more_product {
        justify-self: end;
        width: auto;
        margin-top: 22px;
    }

    @media (max-width: 420px) {
        .marble_block .title,
        .marble_block .product_box.is-featured .title {
            bottom: 54px;
            font-size: 19px;
            line-height: 1.16;
        }

        .marble_block .memo,
        .marble_block .product_box.is-featured .memo {
            bottom: 16px;
            font-size: 12px;
            line-height: 1.42;
        }
    }

    .about_block .RWDparallax_new .picbgbox {
        height: 96vw;
        min-height: 360px;
        background-position: 34% 42%;
    }

    .about_block .RWDparallax_new .overlay {
        background: linear-gradient(180deg, rgba(11, 9, 8, 0.06), rgba(11, 9, 8, 0.22));
    }

    .about_block {
        padding-bottom: 44px;
    }

    .about_block .ab_info {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin: 0;
    }

    .about_block .RWDedictor001 {
        min-height: 0;
        padding: 34px 24px 36px;
    }

    .about_block .RWDedictor001 .main-title,
    .about_block .RWDnews008 .main-title {
        font-size: 30px;
    }

    .about_block .RWDedictor001 .sub-title {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.6;
    }

    .about_block .RWDedictor001 p {
        font-size: 14px;
        line-height: 1.82;
    }

    .about_block .ab_special {
        margin-top: 0;
        padding: 0;
    }

    .about_block .ab_special > .container {
        width: 100%;
        margin: 0;
    }

    .about_block .RWDnews008 {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about_block .RWDnews008 .section-subject {
        padding: 28px 24px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(142, 116, 91, 0.18);
    }

    .about_block .about_special_grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }

    .about_block .about_special_grid .item + .item {
        border-left: 0;
        border-top: 1px solid rgba(142, 116, 91, 0.16);
    }

    .about_block .about_special_grid .item:not(:last-child)::after {
        display: none;
    }

    .about_block .about_special_grid .item a {
        min-height: 0;
        padding: 20px 24px;
    }

    .about_block .about_special_grid .news-text {
        font-size: 20px;
    }

    .steps_block {
        min-height: 0;
        padding: 36px 0 40px;
        background: linear-gradient(180deg, #fbf9f6 0%, #fbf9f6 78%, #f2ebe2 78%, #efe7de 100%);
    }


    .steps_block .container {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .steps_block .RWDnews003 {
        display: block;
        min-height: 0;
        padding-left: 16px;
    }

    .steps_block .main-title {
        font-size: 28px;
        line-height: 1.26;
    }

    .steps_block .sub-title {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.8;
    }

    .steps_block__layout {
        gap: 18px;
        margin-top: 28px;
    }

    .steps_block__flow.row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-right: 16px;
    }

    .steps_block__index {
        margin-bottom: 14px;
        font-size: 32px;
    }

    .steps_block .box-item-title {
        font-size: 18px;
        line-height: 1.55;
    }

    .steps_block__copy {
        margin-top: 16px;
    }

    .steps_block__copy p,
    .steps_block__note,
    .steps_block__contact-text {
        font-size: 14px;
        line-height: 1.82;
    }

    .steps_block__contact {
        padding-left: 0;
    }

    .steps_block__contact-inner {
        padding: 18px 22px 20px 0;
    }

    .steps_block__contact-title {
        font-size: 19px;
        line-height: 1.6;
    }

    .steps_block__contact-label {
        margin-top: 24px;
        font-size: 12px;
    }

    .steps_block__contact-phone {
        font-size: 30px;
    }
}

.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #12100f;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer__overlay {
    position: relative;
    padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
    background-image:
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(184, 151, 106, 0.12), transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(255, 255, 255, 0.04), transparent 50%),
        linear-gradient(180deg, rgba(18, 16, 15, 0.98) 0%, rgba(22, 19, 17, 0.96) 100%),
        var(--footer-bg-image, none);
    background-size: cover;
    background-position: center;
}

.site-footer__overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.18));
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
    grid-template-areas: "brand contact explore support";
    gap: 0 clamp(32px, 4vw, 56px);
    width: min(calc(100% - 10vw), 1320px);
    margin: 0 auto;
    align-items: start;
}

.site-footer__brand {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: clamp(16px, 2vw, 32px);
}

.site-footer__brand-top {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 28px);
    margin-bottom: 20px;
}

.site-footer__logo {
    display: block;
    width: auto;
    max-width: 140px;
    max-height: 52px;
    margin-bottom: 0;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9;
}

.site-footer__socials {
    flex: 1;
    min-width: 0;
}

.site-footer__contact {
    grid-area: contact;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: clamp(16px, 2vw, 32px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__links {
    display: contents;
}

.site-footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: clamp(16px, 2vw, 32px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__link-group:first-child {
    grid-area: explore;
}

.site-footer__link-group:last-child {
    grid-area: support;
}

.site-footer__title,
.site-footer__heading {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.site-footer__title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 18px;
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.3;
    letter-spacing: 0.06em;
}

.site-footer__intro {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.85;
}

.site-footer__heading {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__socials ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
}

.site-footer__socials a:hover {
    border-color: #b8976a;
    color: #ffffff;
    background: rgba(184, 151, 106, 0.12);
    transform: translateY(-1px);
}

.site-footer__business {
    display: grid;
    gap: 14px;
}

.site-footer__business p {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.site-footer__business span {
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__business a {
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__business a:hover {
    color: #b8976a;
}

.site-footer__links a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.site-footer__links a::before {
    content: "";
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(184, 151, 106, 0.55);
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__links a:hover::before {
    background: #b8976a;
    transform: scale(1.4);
}

.site-footer__bottom {
    width: 100%;
    background: #100e0d;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    width: min(calc(100% - 10vw), 1480px);
    min-height: 54px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    letter-spacing: 0.04em;
}

@media (max-width: 1320px) {
    .site-footer__overlay {
        padding: clamp(40px, 5vw, 56px) 0 clamp(32px, 4vw, 48px);
    }

    .site-footer__inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
        width: min(calc(100% - 72px), 1180px);
        gap: 0 clamp(24px, 3vw, 40px);
    }

    .site-footer__bottom-inner {
        width: min(calc(100% - 72px), 1120px);
    }
}

@media (max-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand brand"
            "contact explore"
            "contact support";
        gap: 32px clamp(24px, 4vw, 40px);
    }

    .site-footer__brand {
        padding-right: 0;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer__contact {
        padding-left: 0;
        border-left: none;
    }

    .site-footer__link-group {
        padding-left: clamp(16px, 2vw, 24px);
    }
}

@media (max-width: 860px) {
    .site-footer {
        font-size: 14px;
    }

    .site-footer__overlay {
        padding: 40px 0 32px;
    }

    .site-footer__inner,
    .site-footer__bottom-inner {
        width: min(calc(100% - 36px), 720px);
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "contact"
            "explore"
            "support";
        gap: 28px;
    }

    .site-footer__brand {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 18px;
        align-items: start;
        padding-bottom: 0;
        border-bottom: none;
    }

    .site-footer__brand-top {
        display: grid;
        gap: 12px;
        align-items: start;
        margin-bottom: 0;
    }

    .site-footer__title {
        margin-bottom: 0;
        padding-bottom: 0;
        font-size: 22px;
    }

    .site-footer__intro {
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
    }

    .site-footer__contact,
    .site-footer__link-group {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
    }

    .site-footer__contact {
        gap: 24px;
    }

    .site-footer__heading {
        margin-bottom: 2px;
    }

    .site-footer__socials a {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .site-footer__links a {
        font-size: 14px;
    }

    .site-footer__bottom-inner {
        min-height: 0;
        padding: 14px 0;
        justify-content: flex-start;
        font-size: 11px;
    }

    .site-fixed-actions {
        right: 12px;
        bottom: 18px;
        gap: 8px;
    }

    .site-fixed-actions a,
    .site-fixed-actions button {
        width: 38px;
        height: 38px;
    }
}

.stone-page {
    background: #ffffff;
    color: #2e241d;
}

.about-hero,
.sh-hero,
.ct-hero,
.stone-page__hero {
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--junshi-header-offset, var(--junshi-header-height)) * -1);
    min-height: calc(var(--junshi-page-hero-min-height) + var(--junshi-header-offset, var(--junshi-header-height)));
    padding: calc(var(--junshi-page-hero-pad-top) + var(--junshi-header-offset, var(--junshi-header-height))) 24px var(--junshi-page-hero-pad-bottom);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 980px) {
    :root {
        --junshi-page-hero-pad-top: 80px;
        --junshi-page-hero-pad-bottom: 60px;
        --junshi-page-hero-min-height: 300px;
    }
}

@media (max-width: 720px) {
    :root {
        --junshi-page-hero-pad-top: 64px;
        --junshi-page-hero-pad-bottom: 48px;
        --junshi-page-hero-min-height: 260px;
    }
}

.stone-page__hero {
    background:
        linear-gradient(120deg, rgba(31, 25, 22, 0.58), rgba(31, 25, 22, 0.34)),
        var(--hero-bg-image, url("assets/images/header/Banner-2.jpg"));
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

.stone-page__hero-inner {
    width: min(calc(100% - 96px), 1480px);
    margin: 0 auto;
}

.stone-page__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4.8vw, 72px);
    line-height: 1.08;
    font-weight: 500;
    text-align: center;
}

.stone-page__tabs {
    display: flex;
    border-bottom: 1px solid rgba(109, 89, 69, 0.15);
}

.stone-page__tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 22px 8px;
    text-decoration: none;
    color: #8c8279;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.stone-page__tab:hover {
    color: #5c4434;
}

.stone-page__tab.is-active {
    color: #2e241d;
    border-bottom-color: #b8976a;
}

.stone-page__tab-zh {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.stone-page__tab-en {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.3;
    opacity: 0.7;
}

.stone-page__tab.is-active .stone-page__tab-en {
    opacity: 0.55;
}

.stone-page__notice {
    margin-top: 38px;
    text-align: center;
}

.stone-page__notice p {
    margin: 0;
    color: #8a674d;
    font-size: 15px;
    line-height: 1.9;
}

.stone-page__notice a {
    color: #8a674d;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.stone-page__intro {
    max-width: 860px;
    margin: 32px auto 0;
    color: rgba(46, 36, 29, 0.72);
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

.stone-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
    margin-top: 38px;
}

.stone-page__grid .stone-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    color: inherit;
    background: none;
    transition: transform 0.35s ease;
}

.stone-page__grid .stone-card:hover {
    transform: translate(-4px, -4px);
}

.stone-card__images {
    position: relative;
    overflow: hidden;
}

.stone-card__img {
    width: 100%;
    overflow: hidden;
}

.stone-card__img img {
    display: block;
    width: 100%;
    height: auto;
}

.stone-card__img--back {
    position: relative;
}

.stone-card__img--front {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stone-card__img--front .stone-card__zoom {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 1;
    background-color: #fff;
    cursor: zoom-in;
    -webkit-transition: opacity .35s ease-in-out 0s;
    transition: opacity .35s ease-in-out 0s;
    z-index: 100;
}

.stone-card__img--front .stone-card__zoom:hover {
    opacity: 0;
}

.stone-card__title {
    margin: 20px 0;
    color: #000;
    font-size: inherit;
    line-height: inherit;
    font-weight: normal;
    overflow: hidden;
}

.stone-card__line {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 16px;
    background: #333;
    transition: width 0.35s ease;
}

.stone-page__grid .stone-card:hover .stone-card__line {
    width: 60px;
}

.stone-card__summary {
    margin-bottom: 20px;
    color: #818181;
    line-height: 20px;
}

.stone-page__layout {
    width: min(calc(100% - 96px), 1480px);
    margin: 0 auto;
    padding: 50px 0 96px;
}

.stone-page__content {
    min-width: 0;
}

.stone-lightbox .sh-lightbox__content img {
    max-width: min(88vw, 1200px);
    max-height: 78vh;
    object-fit: contain;
}

.stone-lightbox .sh-lightbox__caption {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
}

@media (max-width: 1320px) {
    .stone-page__hero-inner,
    .stone-page__layout {
        width: min(calc(100% - 72px), 1180px);
    }

    .stone-page__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .stone-page__tabs {
        flex-wrap: wrap;
    }

    .stone-page__tab {
        flex: 0 0 auto;
        min-width: calc(100% / 5);
    }

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

@media (max-width: 720px) {
    .stone-page__hero-inner,
    .stone-page__layout {
        width: min(calc(100% - 32px), 720px);
    }

    .stone-page__intro {
        font-size: 14px;
        line-height: 1.82;
    }

    .stone-page__layout {
        padding: 28px 0 64px;
    }

    .stone-page__tab {
        min-width: calc(100% / 3);
        padding: 16px 8px;
    }

    .stone-page__tab-zh {
        font-size: 14px;
    }

    .stone-page__tab-en {
        font-size: 11px;
    }

    .stone-page__notice {
        margin-top: 28px;
    }

    .stone-page__notice p {
        font-size: 14px;
    }

    .stone-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        margin-top: 28px;
    }

}

.about-hero {
    background:
        linear-gradient(180deg, rgba(12, 10, 8, 0.48), rgba(12, 10, 8, 0.32)),
        var(--hero-bg-image, none);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

.about-hero__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-hero__title {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.2;
}

.about-page {
    overflow: hidden;
    background: #ffffff;
}

.about-page__inner {
    width: min(calc(100% - 96px), 1200px);
    margin: 0 auto;
    padding: 72px 0 96px;
}

.about-page__heading {
    margin: 0 0 56px;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 500;
    color: #2e241d;
    text-align: center;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 72px;
}

.about-section--breakthrough {
    display: block;
    position: relative;
    margin: 0 calc(-50vw + 50%);
    padding: 0 0 80px;
}

.about-section--breakthrough .about-section__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    top: 30%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 70%),
        var(--break-bg, none);
    background-position: center bottom;
    background-size: cover;
}

.about-section--breakthrough .about-section__image {
    position: relative;
    width: min(calc(100% - 96px), 1200px);
    margin: 0 auto;
}

.about-section--breakthrough .about-section__text {
    position: relative;
    width: min(calc(100% - 96px), 1200px);
    margin: 0 auto;
    padding: 40px 48px 48px;
    background: #ffffff;
}

.about-section--english {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid #e8e3de;
}

.about-section__image {
    overflow: hidden;
}

.about-section__image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-section__label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #8a674d;
    text-transform: uppercase;
}

.about-section__title {
    margin: 14px 0 0;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.5;
    color: #2e241d;
}

.about-section__text p {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 2;
    color: rgba(46, 36, 29, 0.72);
}

.about-marquee {
    overflow: hidden;
    padding: 0;
    background: #f5f0eb;
}

.about-marquee__track {
    display: flex;
    width: max-content;
    animation: about-marquee-scroll 80s linear infinite;
}

.about-marquee__slide {
    flex: 0 0 auto;
    width: 480px;
    height: 340px;
    overflow: hidden;
}

.about-marquee__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes about-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 980px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-section--breakthrough .about-section__image,
    .about-section--breakthrough .about-section__text {
        width: min(calc(100% - 32px), 1200px);
    }

    .about-section--breakthrough .about-section__text {
        padding: 28px 24px 36px;
    }

    .about-page__inner {
        padding: 48px 0 64px;
    }

    .about-marquee__slide {
        width: 380px;
        height: 260px;
    }
}

@media (max-width: 720px) {
    .about-page__inner {
        width: min(calc(100% - 32px), 720px);
        padding: 36px 0 48px;
    }

    .about-page__heading {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .about-section {
        margin-bottom: 48px;
    }

    .about-section--breakthrough {
        padding-bottom: 48px;
    }

    .about-section--breakthrough .about-section__text {
        margin-top: 28px;
    }

    .about-marquee__slide {
        width: 300px;
        height: 200px;
    }
}

.sh-hero {
    background:
        linear-gradient(180deg, rgba(12, 10, 8, 0.48), rgba(12, 10, 8, 0.32)),
        var(--hero-bg-image, none);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

.sh-hero__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.sh-hero__title {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.2;
}

.sh-page {
    background: #ffffff;
}

.sh-page__layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    width: min(calc(100% - 96px), 1400px);
    margin: 0 auto;
    padding: 56px 0 96px;
    align-items: start;
}

.sh-page__sidebar {
    position: sticky;
    top: calc(var(--junshi-header-offset, var(--junshi-header-height, 88px)) + 20px);
}

.sh-page__nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #2e241d;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e3de;
    margin-bottom: 12px;
}

.sh-page__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sh-page__nav-list li {
    border-bottom: 1px solid #f3f0ec;
}

.sh-page__nav-list a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
    color: #5c4434;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.sh-page__nav-list a span {
    font-size: 12px;
    color: #aaa;
}

.sh-page__nav-list a:hover,
.sh-page__nav-list li.is-active a {
    color: #8a674d;
    font-weight: 500;
}

.sh-page__cat-title {
    margin: 0 0 12px;
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 500;
    color: #2e241d;
}

.sh-page__cat-title span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 0.06em;
}

.sh-page__desc {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(46, 36, 29, 0.68);
}

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

.sh-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sh-card:hover {
    transform: translateY(-4px);
}

.sh-card__image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0ebe5;
}

.sh-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sh-card:hover .sh-card__image img {
    transform: scale(1.04);
}

.sh-card__label {
    padding: 16px 0;
    text-align: center;
}

.sh-card__zh {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2e241d;
}

.sh-card__en {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #999;
    letter-spacing: 0.06em;
}

@media (max-width: 980px) {
    .sh-page__layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sh-page__sidebar {
        position: static;
        margin-bottom: 32px;
    }

    .sh-page__nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
    }

    .sh-page__nav-list li {
        border-bottom: none;
    }

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

@media (max-width: 720px) {
    .sh-page__layout {
        width: min(calc(100% - 32px), 720px);
        padding: 32px 0 64px;
    }

    .sh-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sh-card__zh {
        font-size: 15px;
    }
}

.ct-hero {
    background:
        linear-gradient(180deg, rgba(8, 6, 5, 0.56), rgba(8, 6, 5, 0.38)),
        var(--hero-bg-image, none);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
}

.ct-hero__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.ct-hero__title {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: clamp(36px, 4.4vw, 64px);
    font-weight: 500;
    line-height: 1.15;
}

.ct-hero__subtitle {
    max-width: 560px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.8;
}

.ct-page {
    background: #faf8f6;
}

.ct-page__inner {
    width: min(calc(100% - 96px), 1280px);
    margin: 0 auto;
    padding: 72px 0 96px;
}

.ct-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
}

.ct-form-header__title {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    color: #2e241d;
}

.ct-form-header__desc {
    margin: 10px 0 0;
    font-size: 15px;
    color: rgba(46, 36, 29, 0.6);
    line-height: 1.8;
}

.ct-form {
    margin-top: 32px;
}

.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ct-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
}

.ct-form__row .ct-form__field {
    margin-top: 0;
}

.ct-form__label {
    font-size: 13px;
    font-weight: 500;
    color: #5c4434;
    letter-spacing: 0.04em;
}

.ct-form__label abbr {
    color: #c0392b;
    text-decoration: none;
}

.ct-form__field input,
.ct-form__field textarea {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #2e241d;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.ct-form__field input:focus,
.ct-form__field textarea:focus {
    border-color: #8a674d;
    box-shadow: 0 0 0 3px rgba(138, 103, 77, 0.08);
}

.ct-form__field textarea {
    resize: vertical;
}

.ct-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-width: 180px;
    min-height: 52px;
    padding: 0 36px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: #8a674d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.ct-form__submit:hover {
    background: #7a5a42;
}

.ct-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.ct-info-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(138, 103, 77, 0.1);
    border-radius: 12px;
}

.ct-info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    background: rgba(138, 103, 77, 0.06);
    border-radius: 10px;
    color: #8a674d;
}

.ct-info-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e241d;
    letter-spacing: 0.04em;
}

.ct-info-card a,
.ct-info-card p {
    margin: 0;
    color: rgba(46, 36, 29, 0.68);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.ct-info-card a:hover {
    color: #8a674d;
}

.ct-social {
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid rgba(138, 103, 77, 0.1);
    border-radius: 12px;
}

.ct-social h3 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #2e241d;
}

.ct-social__links {
    display: flex;
    gap: 12px;
}

.ct-social__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #5c4434;
    border: 1px solid #d6cec6;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.ct-social__links a:hover {
    color: #fff;
    background: #8a674d;
    border-color: #8a674d;
}

.ct-gallery-section {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid rgba(138, 103, 77, 0.12);
}

.ct-gallery-section__title {
    margin: 0 0 36px;
    font-size: 28px;
    font-weight: 500;
    color: #2e241d;
    text-align: center;
    letter-spacing: 0.04em;
}

.ct-gallery {
    columns: 4;
    column-gap: 14px;
}

.ct-gallery__item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 8px;
    overflow: hidden;
}

.ct-gallery__link {
    position: relative;
    display: block;
    cursor: pointer;
}

.ct-gallery__link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.ct-gallery__link:hover img {
    transform: scale(1.04);
}

.ct-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-gallery__link:hover .ct-gallery__overlay {
    opacity: 1;
}

@media (max-width: 1100px) {
    .ct-gallery {
        columns: 3;
    }
}

@media (max-width: 980px) {
    .ct-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 720px) {
    .ct-page__inner {
        width: min(calc(100% - 32px), 720px);
        padding: 40px 0 64px;
    }

    .ct-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ct-gallery {
        columns: 2;
        column-gap: 10px;
    }

    .ct-gallery__item {
        margin-bottom: 10px;
    }

    .ct-gallery-section {
        margin-top: 48px;
        padding-top: 36px;
    }
}

.sh-page__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #aaa;
}

.sh-page__breadcrumb a {
    color: #8a674d;
    text-decoration: none;
}

.sh-page__breadcrumb a:hover {
    text-decoration: underline;
}

.sh-page__back {
    margin-top: 32px;
}

.sh-page__back a {
    color: #8a674d;
    font-size: 14px;
    text-decoration: none;
}

.sh-page__back a:hover {
    text-decoration: underline;
}

.sh-page__empty {
    color: #999;
    font-size: 15px;
}

.sh-gallery {
    columns: 4;
    column-gap: 12px;
}

.sh-gallery__item {
    break-inside: avoid;
    margin-bottom: 12px;
}

.sh-gallery__link {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.sh-gallery__link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sh-gallery__link:hover img {
    transform: scale(1.03);
}

.sh-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sh-gallery__link:hover .sh-gallery__overlay {
    opacity: 1;
}

.sh-gallery__overlay span {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.sh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
}

.sh-lightbox[hidden] {
    display: none;
}

.sh-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.sh-lightbox__close:hover {
    opacity: 1;
}

.sh-lightbox__prev,
.sh-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 0 20px;
}

.sh-lightbox__prev:hover,
.sh-lightbox__next:hover {
    opacity: 1;
}

.sh-lightbox__prev { left: 0; }
.sh-lightbox__next { right: 0; }

.sh-lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.sh-lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.sh-lightbox__caption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

@media (max-width: 980px) {
    .sh-gallery {
        columns: 3;
    }
}

@media (max-width: 720px) {
    .sh-gallery {
        columns: 2;
        column-gap: 8px;
    }

    .sh-gallery__item {
        margin-bottom: 8px;
    }
}
