.ritual-perf-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}

.perf-header {
    text-align: center;
    margin-bottom: 60px;
}

.perf-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.perf-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-list {
    border-top: 1px solid #000;
}

.acc-item {
    border-bottom: 1px solid #000;
    overflow: hidden;
}

.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 25px 10px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.acc-trigger:hover {
    background-color: rgba(0,0,0,0.03);
}

.trigger-text {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.plus-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.plus-icon::before, .plus-icon::after {
    content: '';
    position: absolute;
    background-color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.plus-icon::before { width: 100%; height: 2px; }
.plus-icon::after { width: 2px; height: 100%; }

.acc-item.active .trigger-text {
    font-weight: 700;
}

.acc-item.active .plus-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.acc-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 0 10px;
}

.acc-item.active .acc-content {
    max-height: 600px;
    opacity: 1;
    padding-bottom: 40px;
    padding-top: 10px;
}

.content-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.content-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.content-text-block {
    flex: 1;
}

.content-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.content-p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}

.tab-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.tab-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

@media (max-width: 1024px){
    .ritual-perf-section{
        padding: 0 20px;
    }

    .perf-title {
        font-size: 24px;
    }

    .acc-item.active .acc-content{
        max-height: 800px;
    }

    .content-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
}