.guide-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 40% 54%;
    overflow: hidden;
    background: url("../images/bg-guide.png") center/cover no-repeat;
}

.guide-video-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
    border-right: 10px solid #b09a76;
    border-radius: 0 110% 110% 0 / 0 100% 100% 0;
    box-shadow: 16px 0 32px rgba(99, 78, 46, 0.18);
}

.guide-video {
    position: absolute;
    inset: 0;
    width: 112%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition:
        opacity 0.45s ease,
        transform 1.5s ease;
}

.guide-video.active {
    opacity: 1;
    transform: scale(1);
}

.guide-controls {
    position: absolute;
    z-index: 5;
    left: 39.25%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    gap: 18px;
    justify-items: center;
}

.guide-btn {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        filter 0.22s ease;
}

.guide-btn img {
    display: block;
    width: 58px;
}

.guide-btn.play img {
    width: 86px;
}

.guide-btn:hover,
.guide-btn.active {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 12px rgba(120, 92, 50, 0.28));
}

.guide-content {
    position: relative;
    z-index: 2;
    width: min(560px, 80%);
    margin: auto;
    text-align: center;
    color: #27324c;
}

.guide-content h2 {
    margin: 0 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 1;
    color: #a08b6c;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9);
}

/*
.guide-content h2::after {
    content: "";
    display: block;
    width: 76%;
    height: 18px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, #b8a27b, transparent);
    opacity: 0.85;
}
*/

.guide-content p {
    margin: 0 auto 24px;
    max-width: 520px;
    font-size: clamp(14px, 1.1vw, 14px);
    line-height: 1.5;
    text-align: justify;
    /*font-weight: 700;*/
}

.read-more-btn {
    min-width: 190px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff8e8, #d7bd86);
    color: #161616;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.75),
        0 5px 14px rgba(112, 86, 45, 0.22);
}

@media (max-width: 900px) {
    .guide-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 56px;
    }

    .guide-video-wrap {
        height: 55vh;
        min-height: 390px;
        border-right: 0;
        border-bottom: 8px solid #b09a76;
        border-radius: 0 0 42% 42% / 0 0 14% 14%;
    }

    .guide-controls {
        left: 50%;
        top: 55vh;
        transform: translate(-50%, -50%);
        grid-auto-flow: column;
    }

    .guide-content {
        width: min(620px, 88vw);
        margin-top: 72px;
    }
}

@media (max-width: 520px) {
    .guide-video-wrap {
        height: 48vh;
        min-height: 330px;
    }
.guide-controls {
        left: 50%;
        top: 48vh;
        transform: translate(-50%, -50%);
        grid-auto-flow: column;
    }
    .guide-btn img {
        width: 44px;
    }

    .guide-btn.play img {
        width: 68px;
    }

    .guide-content {
        margin-top: 58px;
    }
}

.guide-btn.play.paused {
    filter: grayscale(0.25) brightness(0.92);
    transform: scale(0.96);
}
