/* ============================================================
   Equipment Stories 页面
   ============================================================ */

/* ============================================================
   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;
}

/* ============================================================
   Equipment Stories Page v1 - UIPro Design
   ============================================================ */

/* ─── 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;
}
.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: row; flex-wrap: wrap; gap: 24px; }
.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 48px;
    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: 80px 0; }

/* Our Origin article — Figma "Where Our Trucks Come From" */
.stories-origin__article { display: flex; flex-direction: column; gap: 16px; }
.stories-origin__header { display: flex; flex-direction: column; gap: 12px; }
.stories-origin__eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.stories-origin__eyebrow-line { display: inline-block; width: 32px; height: 2px; background: #83AE48; }
.stories-origin__eyebrow-text { font-family: 'SF Pro', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.08em; color: #83AE48; text-transform: uppercase; line-height: 1.2; }
.stories-origin__h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.15; color: #0F1115; margin: 0; }
.stories-origin__body { display: flex; flex-direction: column; gap: 16px; }
.stories-origin__p { font-family: 'SF Pro', sans-serif; font-size: 18px; font-weight: 400; line-height: 28px; color: #717182; margin: 0; }
.stories-origin__h2 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; line-height: 28px; color: #0F1115; margin: 4px 0; }
.stories-origin__quote { background: #F9FAFB; border-left: 3.32px solid #83AE48; padding: 28px; display: flex; flex-direction: column; gap: 12px; margin: 4px 0; }
.stories-origin__quote-lead { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; line-height: 28px; color: #0F1115; margin: 0; }
.stories-origin__quote-body { font-family: 'SF Pro', sans-serif; font-size: 18px; font-weight: 400; line-height: 28px; color: #717182; margin: 0; }
.stories-origin__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1.11px solid #F1F5F9; }
.stories-origin__sig { display: flex; align-items: center; gap: 12px; flex: 1; font-style: normal; }
.stories-origin__avatar { width: 56px; height: 56px; border-radius: 50%; background: #E7EFE0; color: #83AE48; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.stories-origin__sig-text { display: flex; flex-direction: column; gap: 2px; }
.stories-origin__sig-name { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; line-height: 28px; color: #0F1115; margin: 0; }
.stories-origin__sig-role { font-family: 'SF Pro', sans-serif; font-size: 16px; font-weight: 400; line-height: 24px; color: #717182; margin: 0; }

@media (max-width: 768px) {
    .stories-origin__h1 { font-size: clamp(28px, 7vw, 36px); }
    .stories-origin__h2,
    .stories-origin__quote-lead { font-size: 18px; line-height: 24px; }
    .stories-origin__p,
    .stories-origin__quote-body { font-size: 15px; line-height: 24px; }
    .stories-origin__quote { padding: 20px; }
    .stories-origin__avatar { width: 48px; height: 48px; font-size: 16px; }
    .stories-origin__sig-name { font-size: 18px; line-height: 24px; }
    .stories-origin__sig-role { font-size: 14px; line-height: 20px; }
}

/* ─── 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: 0;
}
.stories-on-site__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 240px;
    box-sizing: border-box;
    width: 100%;
}
.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: 423px; /* figma: 1280×423px */
    object-fit: cover;
    border-radius: 20px; /* figma: 20px */
    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; }

/* ============================================================
   UIPro Mobile Design (375px)
   ============================================================ */

/* ============================================================
   Tablet Responsive Styles
   ============================================================ */

/* @media (min-width: 600px) {
    .stories-cta { max-width: 560px; }
    .stories-cta__btns { flex-direction: row; justify-content: center; }
} */

/* @media (min-width: 768px) {
    .stories-inner { padding: 0 32px; }
    .stories-on-site { padding: 48px 32px; }
    .stories-origin { padding: 48px 0; }
    .stories-list  { padding: 48px 0; }
    .stories-trust { padding: 48px 0; }
    
    .stories-photo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stories-photo-grid > * {
        flex: unset;
        min-width: unset;
    }
    .stories-photo-card--sm { height: 180px; }
    .stories-photo-card--lg { height: 240px; }
    .story__img { height: 260px; }
} */

/* ============================================================
   Desktop Responsive Styles
   ============================================================ */

/* @media (min-width: 1100px) {
    .stories-cta { max-width: 800px; padding: 48px 40px; }
    .stories-cta__title { font-size: 26px; }
    .stories-on-site__inner {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 48px;
        align-items: start;
    }
    .stories-photo-card--sm { height: 200px; }
    .stories-photo-card--lg { height: 260px; }

    .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; }
} */

/* ============================================================
   Legacy Responsive (for older version)
   ============================================================ */
@media (max-width: 768px) {
    /* Hero (Mobile) */
    .stories-hero {
        display: flex;
        align-items: flex-start;
        padding: calc(var(--navbar-h) - 44px) 0 40px;
    }
    .stories-hero__inner {
        padding: 0 20px;
        gap: 12px;
    }
    .inner-page-hero__breadcrumb { display: none; }
    .stories-hero__eyebrow {
        margin: 0;
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
        color: var(--Color-Primary-Primary-500, #83AE48);
    }
    .stories-hero-v2__eyebrow-line {
        background: var(--Color-Primary-Primary-500, #83AE48);
    }
    .inner-page-hero__title {
        margin: 0;
        font-size: var(--Font-Size-2xl, 24px);
        line-height: var(--Font-Leading-7, 28px);
    }
    .stories-hero__title-accent {
        color: var(--Color-Primary-Primary-500, #83AE48);
    }
    .inner-page-hero__subtitle {
        margin: 0;
        color: var(--Color-Text-Secondary, #B7BDCD);
        font-family: var(--Font-Family-sans, "SF Pro");
        line-height: var(--Font-Leading-5, 20px);
    }
    .stories-hero__stats {
        flex-direction: column;
        gap: 6px;
    }
    .stories-hero__stat {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--Color-Text-Inverse, #FFF);
        font-size: var(--Font-Size-sm, 14px);
        font-weight: var(--Font-Weight-medium, 500);
        line-height: var(--Font-Leading-5, 20px);
    }
    .stories-hero__stat img { border-radius: 10px; transform: rotate(-180deg); }

    /* Inner container (Mobile) */
    .stories-inner {
        max-width: var(--max-w);
        padding: 0 20px;
    }
    .stories-tag {
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
        color: var(--Color-Primary-Primary-500, #83AE48) !important;
    }
    .stories-tag__line {
        background: var(--Color-Primary-Primary-500, #83AE48) !important;
    }

    /* Origin section (Mobile) */
    .stories-origin { padding: 10px 0; }
    .stories-h2 {
        font-size: var(--Font-Size-2xl, 24px);
        line-height: var(--Font-Leading-7, 28px);
    }
    .stories-prose {
        gap: 12px;
        font-family: var(--Font-Family-sans, "SF Pro");
        line-height: var(--Font-Leading-5, 20px);
    }

    .stories-blockquote {
        padding: 28px;
        border-color: var(--Color-Primary-Primary-500, #83AE48);
        background: var(--Color-Background-Primary, #F9FAFB);
    }
    .stories-blockquote__lead {
        font-size: var(--Font-Size-base, 16px);
        font-weight: var(--Font-Weight-bold, 700);
        line-height: var(--Font-Leading-5, 20px);
        letter-spacing: var(--Font-Tracking-wide, 0.4px);
    }
    .stories-blockquote__body {
        font-family: var(--Font-Family-sans, "SF Pro");
        line-height: var(--Font-Leading-5, 20px);
    }
    .stories-sig {
        padding-top: 12px;
    }
    .stories-sig__avatar {
        color: var(--Color-Primary-Primary-500, #83AE48);
        font-family: var(--Font-Family-sans, Montserrat);
        font-size: var(--Font-Size-base, 16px);
        letter-spacing: var(--Font-Tracking-wide, 0.4px);
        background: var(--Color-Background-GreenTint, #E7EFE0);
    }
    .stories-sig__name {
        font-family: var(--Font-Family-sans, Montserrat);
        font-size: var(--Font-Size-base, 16px);
        font-weight: var(--Font-Weight-bold, 700);
        line-height: var(--Font-Leading-6, 24px);
    }
    .stories-sig__role {
        font-family: var(--Font-Family-sans, "SF Pro");
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
    }

    /* On Site section (Mobile) */
    .stories-on-site {
        padding: 10px 20px;
    }
    .stories-on-site__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    /* Photo grid (Mobile) - 50%/50% -> 100% -> 循环布局 */
    .stories-photo-grid {
        flex-wrap: wrap;
        gap: 8px;
    }
    .stories-photo-col {
        flex-direction: row;
        width: 100%;
    }
    .stories-photo-card--sm { height: 140px; }
    .stories-photo-card--lg { height: 200px; }
    .stories-photo-card__location {
        color: var(--Color-White, #FFF);
        font-family: var(--Font-Family-sans, "SF Pro");
        font-size: var(--Font-Size-3xs, 8px);
        font-weight: var(--Font-Weight-normal, 400);
        line-height: var(--Font-Leading-3, 12px);
    }
    .stories-photo-card__location svg {
        stroke: var(--Color-White, #FFF);
    }
    .stories-photo-card__arrow { display: none; }
    .stories-photo-card--lg .stories-photo-card__name {
        flex: 1;
    }
    .stories-photo-card--lg .stories-photo-card__location {
        color: var(--Color-White, #FFF);
        font-family: var(--Font-Family-sans, "SF Pro");
        font-weight: var(--Font-Weight-normal, 400);
        line-height: var(--Font-Leading-3, 12px);
    }
    .stories-desc {
        color: var(--Color-Status-Colors-Disable, #717182);
        font-family: var(--Font-Family-sans, "SF Pro");
        font-weight: var(--Font-Weight-normal, 400);
        line-height: var(--Font-Leading-5, 20px);
    }
    .story__num-label {
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
    }
    .stories-h3 {
        font-size: var(--Font-Size-xl, 20px);
        line-height: var(--Font-Leading-6, 24px);
    }
    .story__meta {
        color: var(--Color-Status-Colors-Disable, #717182);
        font-family: var(--Font-Family-sans, "SF Pro");
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
    }
    .story__meta-label {
        font-weight: var(--Font-Weight-medium, 500);
        color: var(--Color-Status-Colors-Disable, #717182);
    }
    .story__img {
        height: 124px;
    }
    .story__pullquote {
        gap: 0;
    }
    .stories-prose strong, 
    .stories-prose b,
    .story__pullquote-text {
        margin: 0;
        color: var(--Color-Text-Primary, #0F1115);
        font-size: var(--Font-Size-base, 16px);
        line-height: var(--Font-Leading-5, 20px);
        letter-spacing: var(--Font-Tracking-wide, 0.4px);
    }
    .story__pullquote-sig {
        border-top: none;
    }
    .stories-callout {
        font-family: var(--Font-Family-sans, "SF Pro");
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
    }
    .story__checklist-lead {
        color: var(--Color-Text-Primary, #0F1115);
        font-size: var(--Font-Size-base, 16px);
        line-height: var(--Font-Leading-5, 20px);
        letter-spacing: var(--Font-Tracking-wide, 0.4px);
    }
    .story__checklist-item {
        align-items: center;
    }
    .story__checklist-num {
        color: var(--Color-Primary-Primary-500, #83AE48);
        font-size: var(--Font-Size-lg, 18px);
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: var(--Color-Background-GreenTint, #E7EFE0);
    }
    .story__checklist-text {
        color: #4A5565;
        font-family: var(--Font-Family-sans, "SF Pro");
        font-size: var(--Font-Size-sm, 14px);
        line-height: var(--Font-Leading-5, 20px);
    }

    /* CTA (Mobile) */
    .uipro-cta-section__inner {
        gap: 12px;
        justify-content: space-between;
        padding: 22px 20px !important;
        min-height: auto;
        height: auto;
    }
    .uipro-cta-section__content {
        gap: 4px;
    }
    .uipro-cta-section__desc {
        width: auto !important;
        white-space: normal !important;
        text-overflow: initial !important;
        font-size: var(--Font-Size-xs, 12px);
        font-family: var(--Font-Family-sans, "SF Pro");
        line-height: var(--Font-Leading-3, 12px);
    }
    /* .uipro-cta {
        width: 220px;
    } */
}

@media (min-width: 1100px) {
    .story__img { height: 423px; border-radius: 20px; } /* figma: 1280×423px */
    .stories-inner { padding: 0 320px; } /* figma: (1920-1280)/2 = 320px */
}
