/* ========== Scroll Reveal ========== */
.about-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-reveal-delay { transition-delay: 0.15s; }
.about-reveal-delay-1 { transition-delay: 0.08s; }
.about-reveal-delay-2 { transition-delay: 0.16s; }
.about-reveal-delay-3 { transition-delay: 0.24s; }
.about-reveal-delay-4 { transition-delay: 0.32s; }
.about-reveal-delay-5 { transition-delay: 0.4s; }
.about-reveal-delay-6 { transition-delay: 0.48s; }

/* ========== Our Story ========== */
.about-story {
    padding: 90px 0;
    background: #fff;
}

.about-story__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-story__label-wrap {
    margin-bottom: 28px;
}

.about-story__label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    margin-bottom: 16px;
}

.about-story__title {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
    margin: 0;
    padding-top: 5px;
}

.about-story__title-zh {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    margin-top: 4px;
    color: var(--primary-color);
}

.about-story__paragraph {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.3;
    margin: 0 0 16px;
}

.about-story__paragraph:last-child {
    margin-bottom: 0;
}

.about-story__gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.about-story__gallery-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-story__gallery-main img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story__gallery:hover .about-story__gallery-main img {
    transform: scale(1.03);
}

.about-story__gallery-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-story__gallery-item {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.about-story__gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story__gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== Why EverNear Exists ========== */
.about-why {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-color) 45%, var(--primary-light) 100%);
    background-size: 200% 200%;
    animation: aboutWhyGradient 14s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-why::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 45%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(196, 162, 101, 0.08) 0%, transparent 65%);
    pointer-events: none;
    animation: aboutHeroGlow 9s ease-in-out infinite alternate;
}

@keyframes aboutWhyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-why__inner {
    display: grid;
    grid-template-columns: 280px 1px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-why__title {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-gold);
    line-height: 1.45;
    margin: 0 0 20px;
}

.about-why__title-zh {
    display: block;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.3rem);
    font-weight: 400;
    margin-top: 1px;
    counter-reset: white;
    color: white;
}

.about-why__desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin: 0;

}

.about-why__divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    align-self: stretch;
    min-height: 200px;
}

.about-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
    text-align: center;
}

.about-why-item {
    transition: var(--transition);
}

.about-why-item:hover {
    transform: translateY(-4px);
}

.about-why-item:hover .about-why-item__icon {
    transform: scale(1.1);
    color: var(--accent-gold-light);
}

.about-why-item__icon {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.about-why-item__icon svg {
    width: 100%;
    height: 100%;
}

.about-why-item__title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 0 0 8px;
    line-height: 1.4;
    text-align: center;
}

.about-why-item__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    .about-story__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-why__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-why__divider {
        display: none;
    }

    .about-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        max-height: none;
        min-height: auto;
    }

    .about-hero__content {
        order: 1;
    }

    .about-hero__visual {
        order: 0;
        min-height: 280px;
        max-height: 360px;
    }

    .about-hero__inner {
        padding: 56px 32px;
        max-width: 100%;
    }

    .about-story,
    .about-why {
        padding: 64px 0 72px;
    }

    .about-story__gallery-main img {
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .about-hero__visual {
        min-height: 240px;
        max-height: 300px;
    }

    .about-hero__inner {
        padding: 48px 24px;
    }

    .about-hero__br {
        display: none;
    }

    .about-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .about-story__gallery {
        grid-template-columns: 1fr;
    }

    .about-story__gallery-main img {
        min-height: 240px;
    }

    .about-why__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
    }
}

/* ========== What We Believe ========== */
.about-believe {
    padding: 90px 0;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.about-believe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 70, 57, 0.12), transparent);
}

.about-believe::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(196, 162, 101, 0.06) 0%, transparent 65%);
    pointer-events: none;
    animation: aboutBelieveGlow 10s ease-in-out infinite alternate;
}

@keyframes aboutBelieveGlow {
    0% { transform: translate(0, 0); opacity: 0.5; }
    100% { transform: translate(-5%, 8%); opacity: 1; }
}

.about-believe__header {
    margin-bottom: 25px;
}

.about-believe__title {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
}

.about-believe__title-zh {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    margin-left: 12px;
}

.about-believe__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.about-believe-card {
    text-align: center;
    transition: var(--transition);
}

.about-believe-card:hover {
    transform: translateY(-6px);
}

.about-believe-card__image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.about-believe-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 70, 57, 0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-believe-card:hover .about-believe-card__image-wrap::after {
    opacity: 1;
}

.about-believe-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-believe-card:hover .about-believe-card__image {
    transform: scale(1.06);
}

.about-believe-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 0px;
    line-height: 1.45;
    transition: var(--transition);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 4px;
}

.about-believe-card:hover .about-believe-card__title {
    color: var(--primary-light);
    background-image: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    background-size: 100% 2px;
}

.about-believe-card__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Believe section responsive */
@media (max-width: 1100px) {
    .about-believe__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 900px) {
    .about-believe {
        padding: 64px 0 72px;
    }

    .about-believe__header {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .about-believe {
        padding: 52px 0 60px;
    }

    .about-believe__title-zh {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }

    .about-believe__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-reveal.revealed{
        text-align: center;
    }

    .about-why__title-zh{
        font-size: 20px; padding-top: 5px;
    }

    .blog-hero__btn {
        padding: 10px 20px;
    }

    .about-story__label-line{
        margin: 0 auto;
    }


    .about-why-item{
        padding-top: 30px; padding-bottom: 30px;
        border: solid 1px var(--accent-gold);
        border-radius: 12px;
    }

    .about-why__title{
        font-size: 12px; margin-bottom: 10px;
    }

    .about-story__label-wrap{
        margin-bottom: 15px;
    }

    .about-believe-card__title{
        padding-bottom: 0px;
    }

    .about-why-item__title{
        margin-bottom: 4px;
    }




}
