/* ============================================================
   Equipment Stories 页面
   Source: main.css lines 3957-4365
   ============================================================ */

/* ============================================================
   Equipment Stories Page (es-*)
   ============================================================ */

/* Hero */
.es-hero {
    position: relative;
    height: 504px; /* 360px design + 144px navbar */
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 0; /* override global section { padding: 72px 0 } */
}
.es-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.es-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.es-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,.80) 0%, rgba(13,27,42,.55) 100%); /* design: dark blue-grey overlay */
}
.es-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--navbar-h) + 40px) 80px 24px 240px; /* unified: all inner-page heroes use +40px top offset */
}
.container.es-hero__content,
.container.es-hero__stats { padding-left: 0; padding-right: 0; max-width: none; margin: 0; } /* override .container { padding: 0 24px; max-width; margin: 0 auto } */
.breadcrumb--light,
.breadcrumb--light a,
.breadcrumb--light .breadcrumb__sep,
.breadcrumb--light .breadcrumb__current {
    color: rgba(255,255,255,0.75);
}
.breadcrumb--light a:hover { color: #fff; }
.es-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.es-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none; /* design: mixed-case */
    letter-spacing: 0.04em;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.es-hero__title {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.es-hero__title--green {
    color: var(--color-accent);
}
.es-hero__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin-bottom: 0;
}
.es-hero__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 0;
    padding: 8px 0 0;
}
.es-hero__stat {
    flex: 1;
    padding: 2px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.es-hero__stat:last-child { border-right: none; }
.es-hero__stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.es-hero__stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.es-hero__stat-icon {
    display: block;
    margin-bottom: 3px;
    opacity: 0.6;
}

/* Brand Story */
.es-story { background: #fff; }
.es-story__container {
    max-width: 760px;
    margin: 0 auto;
}
.es-story__body .section-eyebrow {
    margin-bottom: 8px;
}
.es-story__heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
}
.es-story__body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.25em;
}
.es-story__quote {
    border-left: 4px solid var(--color-accent);
    padding: 16px 24px;
    margin: 32px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
    background: var(--color-accent-light);
    border-radius: 0 8px 8px 0;
}
.es-story__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.es-story__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.es-story__author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}
.es-story__author span {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Locations */
.es-locations { background: #0D1B2A; padding: 80px 0; }
.es-locations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.es-locations__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.es-locations__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.es-locations__item:hover img { transform: scale(1.04); }
.es-locations__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: #fff;
}
.es-locations__caption-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 3px;
}
.es-locations__caption-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

/* Cases */
.es-cases { background: #fff; }
.es-cases > .container {
    max-width: 808px; /* 760px content + 24px*2 padding = 808px, aligns with es-story__container */
}
.es-case {
    max-width: 760px;
    margin: 0 auto 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--color-border);
}
.es-case:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.es-case__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.es-case__label-center {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 16px;
    text-align: center;
}
.es-case__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.es-case__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-bottom: 24px;
    align-items: center;
}
.es-case__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.es-case__meta-item strong {
    font-weight: 600;
    color: var(--color-primary);
}
.es-case__img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 16/7;
}
.es-case__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.es-case__body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1em;
}
.es-case__quote {
    border-left: 4px solid var(--color-accent);
    padding: 16px 24px;
    margin: 28px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
    background: var(--color-accent-light);
    border-radius: 0 8px 8px 0;
}
.es-case__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.es-case__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.es-case__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.es-case__author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}
.es-case__author span {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Why Section */
.es-why { background: var(--color-bg); padding: 80px 0; }
.es-why__container { max-width: 760px; }
.es-why .section-eyebrow {
    margin-bottom: 8px;
}
.es-why__heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
}
.es-why p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.25em;
}
.es-why__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.es-why__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.es-why__author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}
.es-why__author span {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* CTA */
.es-cta {
    background: var(--color-primary);
    padding: 80px 0;
    text-align: center;
}
.es-cta__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}
.es-cta__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}
.es-cta__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .es-hero { height: auto; min-height: 400px; padding-bottom: 24px; }
    /* 手机端内页 Hero padding 修复 */
    .es-hero__inner { padding: calc(var(--navbar-h) + 24px) 20px 40px 20px !important; }
    .es-hero__title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .es-hero__stats { flex-direction: column; }
    .es-hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .es-hero__stat:last-child { border-bottom: none; }
    .es-locations__grid { grid-template-columns: 1fr; }
    .es-case__title { font-size: 1.3rem; }
    .es-why__heading, .es-story__heading { font-size: 1.5rem; }
}



/* ============================================================
   Equipment Stories Mobile
   Source: main.css lines 6886-7313
   ============================================================ */

/* ============================================================
   Equipment Stories Page v1 - UIPro mobile design (375px)
   Frame ID: 1501:3665
   ============================================================ */

/* ─── Hero ──────────────────────────────────────────────────── */
.stories-hero {
    /* bg-image to be added later; display/height controlled by .inner-page-hero (grid) */
    position: relative;
    overflow: hidden;
}
.stories-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,32,59,.6) 0%, rgba(6,32,59,.85) 100%);
    z-index: 0;
}
.stories-hero__inner {
    position: relative;
    z-index: 1;
    /* padding/width overridden by .inner-page-hero__inner */
}
.stories-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    color: rgba(255,255,255,.5);
}
.stories-hero__breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.stories-hero__breadcrumb a:hover { color: #fff; }
.stories-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.stories-hero__eyebrow-line { display: inline-block; width: 24px; height: 1px; background: var(--color-accent); }
.stories-hero__title {
    font-size: clamp(24px,6vw,40px);
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
}
.stories-hero__title-accent { color: var(--color-accent); }
.stories-hero__subtitle { font-size: 14px; color: rgba(255,255,255,.6); margin: 0 0 24px; }
.stories-hero__stats { display: flex; flex-direction: column; gap: 10px; }
.stories-hero__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.stories-hero__stat img { border-radius: 10px; transform: rotate(-180deg); }

/* ─── Shared inner container ────────────────────────────────── */
.stories-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 240px;
    box-sizing: border-box;
    width: 100%;
}

/* ─── Eyebrow tag ────────────────────────────────────────────── */
.stories-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.stories-tag__line { display: inline-block; width: 24px; height: 1px; background: var(--color-accent); }
.stories-tag--center { display: flex; justify-content: center; }

/* ─── Section headings ──────────────────────────────────────── */
.stories-h2 {
    font-size: clamp(20px,5vw,30px);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.25;
    margin: 0 0 16px;
}
.stories-h2--white { color: #fff; }
.stories-h3 {
    font-size: clamp(17px,4vw,22px);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
}
.stories-desc { font-size: 14px; color: var(--color-muted); margin: 0 0 16px; line-height: 1.6; }
.stories-desc--white { color: rgba(255,255,255,.55); }

/* ─── Prose paragraphs ──────────────────────────────────────── */
.stories-prose {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-muted);
}
.stories-prose p { margin: 0; }
.stories-prose strong, .stories-prose b {
    display: block;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text);
    letter-spacing: .02em;
    line-height: 1.6;
}

/* ─── Blockquote ─────────────────────────────────────────────── */
.stories-blockquote {
    background: var(--color-bg);
    border-left: 3px solid var(--color-accent);
    padding: 18px 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stories-blockquote__lead {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.5;
}
.stories-blockquote__body { font-size: 14px; color: var(--color-muted); line-height: 1.75; }

/* ─── Dark callout box ───────────────────────────────────────── */
.stories-callout {
    background: #06203b;
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    font-size: 13px;
    line-height: 1.7;
}

/* ─── Origin section ────────────────────────────────────────── */
.stories-origin { padding: 32px 0; }

/* ─── Author signature ───────────────────────────────────────── */
.stories-sig {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    margin-top: 4px;
}
.stories-sig__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--color-primary);
    flex-shrink: 0;
}
.stories-sig__name { font-size: 14px; font-weight: 600; color: var(--color-text); line-height: 1.3; }
.stories-sig__role { font-size: 12px; color: var(--color-muted); }

/* ─── "On Site" dark panel ───────────────────────────────────── */
.stories-on-site {
    background: #06203b;
    padding: 32px 20px;
}
.stories-on-site__inner {
    padding: 0;
}
.stories-on-site .stories-tag { color: var(--color-accent); }

/* Photo grid: sm+sm / lg / sm+sm */
.stories-photo-grid { display: flex; flex-direction: column; gap: 10px; }
.stories-photo-row  { display: flex; gap: 10px; }
.stories-photo-col  { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.stories-photo-card {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s;
}
.stories-photo-card:hover { transform: scale(1.015); }
.stories-photo-card--sm { flex: 1; height: 140px; }
.stories-photo-card--lg { width: 100%; height: 200px; }

.stories-photo-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.stories-photo-card__footer {
    position: relative;
    z-index: 1;
    padding: 8px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stories-photo-card--lg .stories-photo-card__footer { padding: 14px 16px; }
.stories-photo-card__info { flex: 1; min-width: 0; }
.stories-photo-card__title-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
}
.stories-photo-card__name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
.stories-photo-card--lg .stories-photo-card__name { font-size: 14px; }
.stories-photo-card__dot { width: 4px; height: 4px; border-radius: 50%; background: #d9d9d9; flex-shrink: 0; }
.stories-photo-card__year { font-size: 10px; color: rgba(255,255,255,.8); white-space: nowrap; }
.stories-photo-card--lg .stories-photo-card__year { font-size: 12px; }
.stories-photo-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,.7);
}
.stories-photo-card--lg .stories-photo-card__location { font-size: 12px; }
.stories-photo-card__arrow {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: background .2s;
}
.stories-photo-card--lg .stories-photo-card__arrow { width: 28px; height: 28px; }
.stories-photo-card:hover .stories-photo-card__arrow { background: var(--color-accent); border-color: var(--color-accent); }

/* ─── Three Stories section ─────────────────────────────────── */
.stories-list { padding: 32px 0; }

/* ─── Story article ─────────────────────────────────────────── */
.story {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.story__num-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.story__star { width: 12px; height: 12px; }
.story__num-label { font-size: 12px; font-weight: 500; color: var(--color-text); letter-spacing: .04em; }
.story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 12px;
    color: var(--color-muted);
}
.story__meta-item { display: flex; align-items: center; gap: 6px; }
.story__meta-item img { width: 14px; height: 14px; flex-shrink: 0; }
.story__meta-label { font-weight: 600; color: var(--color-text); }
.story__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.story__pullquote {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.story__pullquote-text {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.55;
}
.story__pullquote-sig { padding-top: 12px; border-top: 1px solid var(--color-border); }

/* Numbered checklist */
.story__checklist {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.story__checklist-lead {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.5;
}
.story__checklist-item { display: flex; align-items: flex-start; gap: 10px; }
.story__checklist-num {
    width: 28px; height: 28px; min-width: 28px;
    border-radius: 50%;
    background: var(--color-accent-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500;
    color: var(--color-primary);
}
.story__checklist-text { font-size: 13px; color: var(--color-muted); line-height: 1.65; flex: 1; }

/* Story separator */
.story-sep { display: flex; align-items: center; gap: 16px; height: 24px; }
.story-sep__line { flex: 1; height: 1px; background: var(--color-border); }
.story-sep__dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); flex-shrink: 0; }

/* ─── Trust section ──────────────────────────────────────────── */
.stories-trust { padding: 32px 0; background: var(--color-bg); }

/* ─── CTA ────────────────────────────────────────────────────── */
    .stories-on-site__header {
        text-align: center;
        margin-bottom: 2.083vw;
    }
    .stories-on-site__inner {
        display: flex;
        flex-direction: column;
    }
    .stories-photo-grid {
        flex-direction: row;
        gap: 1.042vw;
    }
    .stories-photo-col {
        gap: 1.042vw;
    }
    .stories-photo-card--sm { height: 16.67vw; }
    .stories-photo-card--lg { height: 34.375vw; }
}


