/* =========================
   Brand Page
========================= */

.brand-hero {
    margin-top: 76px;
    height: 460px;
    position: relative;
    background: linear-gradient(135deg, #7b1e2b, #b98a57);
    overflow: hidden;
}

.brand-hero picture,
.brand-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-hero img {
    object-fit: cover;
}

.brand-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.28);
}

.brand-hero-text {
    position: absolute;
    left: 10%;
    bottom: 78px;
    color: #fff;
    z-index: 2;
    text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

.brand-hero-text h1 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 5px;
    margin: 0 0 14px;
}

.brand-hero-text p {
    font-size: 20px;
    margin: 0;
    opacity: .92;
}

.brand-section {
    padding: 86px 12%;
}

.brand-section.alt {
    background: #faf7f3;
}

.brand-section h2 {
    font-size: 36px;
    color: #7b1e2b;
    font-weight: 400;
    letter-spacing: 4px;
    margin: 0 0 28px;
    text-align: center;
}

.brand-section-content {
    max-width: 980px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    line-height: 2.2;
    white-space: pre-line;
    text-align: center;
}

.brand-section-content img {
    max-width: 100%;
    height: auto;
}

.brand-section-content table {
    width: 100%;
}

.brand-section-content iframe,
.brand-section-content video {
    max-width: 100%;
}

.timeline-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
}

.timeline-box .brand-section-content {
    text-align: left;
}


/* =========================
   Mobile
   最后统一迁到 mobile.css
========================= */

@media (max-width: 900px) {
    .brand-hero {
        margin-top: 64px;
        height: 360px;
    }

    .brand-hero-text {
        left: 24px;
        right: 24px;
        bottom: 48px;
    }

    .brand-hero-text h1 {
        font-size: 34px;
    }

    .brand-hero-text p {
        font-size: 17px;
    }

    .brand-section {
        padding: 56px 24px;
    }

    .brand-section h2 {
        font-size: 28px;
    }

    .brand-section-content {
        text-align: left;
        font-size: 16px;
    }

    .timeline-box {
        padding: 26px;
    }
}
/* =========================
   Brand Common Pages
========================= */

.page-hero {
    margin-top: 76px;
    height: 340px;
    background: linear-gradient(135deg, #7b1e2b, #b98a57);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 5px;
    margin: 0 0 14px;
}

.page-hero p {
    font-size: 18px;
    opacity: .9;
    margin: 0;
}

.brand-container {
    padding: 80px 10%;
}

.empty {
    text-align: center;
    color: #888;
    padding: 80px 0;
}


/* =========================
   Honor Page
========================= */

.honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.honor-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    transition: .3s;
}

.honor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.honor-img {
    height: 260px;
    background: #f5f0eb;
    overflow: hidden;
}

.honor-img picture,
.honor-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.honor-img img {
    object-fit: cover;
    transition: .5s;
}

.honor-card:hover .honor-img img {
    transform: scale(1.05);
}

.honor-info {
    padding: 24px;
}

.honor-year {
    font-size: 14px;
    color: #b98a57;
    margin-bottom: 8px;
}

.honor-info h2 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #7b1e2b;
    font-weight: 400;
}

.honor-info p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}


/* =========================
   History Page
========================= */

.timeline {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 160px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ead8cc;
}

.timeline-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 60px;
    position: relative;
    margin-bottom: 56px;
}

.timeline-year {
    font-size: 30px;
    color: #7b1e2b;
    font-weight: 400;
    text-align: right;
}

.timeline-content {
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
    position: relative;
}

.timeline-content::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 34px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #7b1e2b;
    border: 5px solid #f2ded0;
}

.timeline-content h2 {
    margin: 0 0 14px;
    font-size: 24px;
    color: #7b1e2b;
    font-weight: 400;
}

.timeline-content p {
    margin: 0;
    color: #666;
    line-height: 2;
    white-space: pre-line;
}


