/* gabs.review - Mid-Century Modern Furniture Review */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Spectral', serif;
    color: #2B2420;
    background: #F5F1EC;
    overflow-x: hidden;
}

.section {
    width: 100%;
    position: relative;
}

/* ========== PERSISTENT VERTICAL DIVIDER ========== */

.vertical-divider {
    position: fixed;
    top: 0;
    left: 60%;
    width: 1px;
    height: 0;
    background: #C8B8A8;
    z-index: 100;
    pointer-events: none;
    animation: drawDivider 800ms ease forwards;
}

@keyframes drawDivider {
    to { height: 100%; }
}

/* ========== VERDICT HERO ========== */

.hero {
    height: 100vh;
    display: flex;
    background: #F5F1EC;
}

.hero-left {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 4rem;
}

.hero-right {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4rem;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(4rem, 10vw, 8rem);
    color: #2B2420;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 400ms ease 800ms forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #A0887A;
    opacity: 0;
    transform: translateX(40px);
    animation: slideInRight 400ms ease 800ms forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== REVIEW BODY ========== */

.review-body {
    display: flex;
    min-height: 100vh;
    padding: 6rem 0;
}

.review-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 4rem 0 2rem;
}

.review-left > * {
    max-width: 520px;
    width: 100%;
}

.review-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #2B2420;
    margin-bottom: 2rem;
}

.review-text {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #2B2420;
    margin-bottom: 1.5rem;
}

.review-right {
    width: 40%;
    padding: 0 2rem 0 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 3rem;
}

.pull-quote {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.pull-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

.pull-quote p {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #A0887A;
    line-height: 1.6;
}

/* ========== RATING SECTION ========== */

.rating-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 700px;
}

.rating-circle-wrap {
    position: relative;
    flex-shrink: 0;
}

.rating-svg {
    width: 160px;
    height: 160px;
}

.rating-number {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    fill: #2B2420;
}

.rating-out-of {
    position: absolute;
    bottom: -8px;
    right: -5px;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #A0887A;
}

.rating-ring {
    transition: stroke-dashoffset 1.5s ease;
}

.sub-ratings {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}

.sub-rating {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sub-label {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #A0887A;
}

.sub-bar {
    width: 200px;
    height: 6px;
    background: #E8DFD0;
    border-radius: 3px;
    overflow: hidden;
}

.sub-bar-fill {
    height: 100%;
    width: 0;
    background: #C8A87A;
    border-radius: 3px;
    transition: width 800ms ease;
}

/* ========== VERDICT BOX ========== */

.verdict-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.verdict-box {
    max-width: 640px;
    margin: 0 auto;
    border: 2px solid #2B2420;
    padding: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.verdict-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.verdict-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2B2420;
    margin-bottom: 1rem;
}

.verdict-summary {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2B2420;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.verdict-text {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #2B2420;
}

/* ========== MINIMAL FOOTER ========== */

.footer {
    min-height: auto;
    padding: 4rem 2rem;
    text-align: center;
}

.footer-rule {
    width: 60px;
    height: 1px;
    background: #C8B8A8;
    margin: 0 auto 2rem;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #A0887A;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .vertical-divider {
        display: none;
    }

    .hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .hero-left {
        align-items: flex-end;
    }

    .hero-right {
        align-items: flex-start;
    }

    .review-body {
        flex-direction: column;
    }

    .review-left,
    .review-right {
        width: 100%;
        padding: 0 2rem;
        align-items: flex-start;
    }

    .rating-container {
        flex-direction: column;
        align-items: center;
    }
}
