.wow-signature-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 100px 2vw;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wow-signature-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    background: radial-gradient(circle, rgba(70, 15, 20, 0.268) 0%, rgba(0,0,0,0) 65%);
    pointer-events: none;
    z-index: 0;
}

.sig-header {
    text-align: center;
    margin-bottom: 50px;
    z-index: 2;
}

.sig-subtitle {
    font-family: var(--font-title);
    color: var(--accent);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: -15px;
}

.sig-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 400;
    color: var(--text-main);
}

.wow-accordion {
    display: flex;
    width: 100%;
    max-width: 1600px;
    height: 70vh;
    min-height: 550px;
    gap: 15px;
    padding: 0 20px;
    z-index: 2;
}

.wow-card {
    position: relative;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.wow-card.active {
    flex: 4;
    cursor: default;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.wow-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.wow-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(50%);
    transition: filter 1s ease, transform 3s ease;
    transform: scale(1.1);
}

.wow-card.active .wow-card-bg img {
    filter: brightness(0.8) grayscale(0%);
    transform: scale(1);
}

.wow-card:hover:not(.active) .wow-card-bg img {
    filter: brightness(0.6) grayscale(30%);
}

.wow-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 2;
}

.wow-card.active:hover .wow-hover-video {
    opacity: 1;
}

.wow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    z-index: 3;
}

.wow-vertical-title {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: opacity 0.5s ease;
}

.wow-vertical-title span {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-sec);
    white-space: nowrap;
}

.wow-card.active .wow-vertical-title {
    opacity: 0;
    pointer-events: none;
}

.wow-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
    transition-delay: 0s;
    pointer-events: none;
}

.wow-card.active .wow-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
    pointer-events: auto;
}

.wow-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.wow-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent);
    border-radius: 50%;
}

.wow-dish-name {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.wow-dish-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-sec);
    max-width: 500px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.wow-pairing {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 2px solid var(--accent);
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
    padding: 15px;
    max-width: 450px;
}

.wow-pairing i {
    font-size: 2rem;
    color: var(--accent);
}

.wow-pairing .pair-text strong {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.wow-pairing .pair-text span {
    color: var(--text-sec);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .wow-accordion { height: 60vh; }
    .wow-dish-name { font-size: 2.8rem; }
    .wow-content { padding: 30px; }
}

@media (max-width: 768px) {
    .wow-signature-section { padding: 80px 0; }
    .wow-accordion {
        flex-direction: column;
        height: 110vh;
        gap: 10px;
        padding: 0 10px;
    }
    
    .wow-card { flex: 1; border-radius: 10px; }
    .wow-card.active { flex: 4; }
    
    .wow-vertical-title span {
        writing-mode: horizontal-tb;
        transform: rotate(0);
        bottom: 50%;
        position: relative;
    }
    .wow-vertical-title { bottom: 35%; }

    .wow-content { padding: 20px; }
    .wow-dish-name { font-size: 2.2rem; }
    .wow-dish-desc { font-size: 0.85rem; margin-bottom: 15px; }
}
.wow-signature-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, 
        #000000 0%, 
        rgba(0, 0, 0, 0.8) 30%, 
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}
.story-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background: linear-gradient(to top, #030303 0%, transparent 100%);
    z-index: -2;
    pointer-events: none;
}