:root {
    --green: #7eb21a;
    --green-dark: #5d8407;
    --green-soft: #eff6df;
    --ink: #1a1f12;
    --muted: #687060;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
.location-copy {
     display: flex;
     gap: 24px;
     align-items: flex-start;
     flex-wrap: wrap;
}
    --surface: #ffffff;
    --surface-muted: #f4f5f0;
    --shadow: 0 22px 50px rgba(27, 37, 8, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    color: var(--ink);
    background: #ffffff;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shell {
    width: min(1000px, calc(100% - 36px));
    margin: 0 auto;
}

.narrow {
    width: min(920px, 100%);
    margin: 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: linear-gradient(90deg, rgba(121, 170, 16, 0.96), rgba(132, 184, 19, 0.92));
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 54px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 176px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fffdf4;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.hero {
    position: relative;
    min-height: 555px;
    overflow: hidden;
    isolation: isolate;
}
     /* room for the two stars */

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about {
    background-color: #F6F6F6;
}

.about-media-bg {
    background-image: url("../images/about-collage.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    max-width: 795px;
    margin: 0 auto;
    /* 使用 padding-top 保持宽高比：height / width * 100% -> 730/795 ≈ 91.8% */
    padding-top: 91.8%;
    background-color: #F6F6F6;
}


.contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/contact-background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248, 250, 240, 0.88) 0%, rgba(248, 250, 240, 0.42) 30%, rgba(248, 250, 240, 0.08) 58%, rgba(248, 250, 240, 0.16) 100%),
        linear-gradient(180deg, rgba(83, 119, 15, 0.16), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 555px;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(420px, 100%);
    padding: 72px 0 34px;
}

.eyebrow,
.section-tag,
.contact-kicker {
    color: var(--green-dark);
    letter-spacing: 0.22em;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(28px, 4.2vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    color: #364613;
}

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    font-size: clamp(18px, 2.6vw, 28px);
    color: #11180c;
}

.hero-copy p:last-of-type {
    margin-top: 18px;
    max-width: 420px;
    font-size: 13px;
    line-height: 1.8;
    color: #425027;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 94px;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, #8abe20, #6d9b10);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-button:hover,
.hero-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(108, 151, 14, 0.32);
}

.section {
    position: relative;
    padding: 28px 0;
}

.section-muted {
    background: #f3f3ef;
}

.section-heading {
    max-width: 560px;
    margin-bottom: 28px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* support header with large faint index behind the title */
.support-header {
    position: relative;
    text-align: center;
    padding-top: 18px;
}
.support-header h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 900;
    margin: 0;
    color: var(--ink);
}
.support-header .support-index {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -20%);
    z-index: 1;
    font-weight: 800;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    color: rgba(0,0,0,0.06);
    font-size: clamp(100px, 16vw, 220px);
    line-height: 0.9;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 720px) {
    .support-header .support-index {
        font-size: 64px;
        top: 0;
        transform: translate(-50%, -10%);
    }
    .support-header h2 {
        font-size: 20px;
    }
}

.section-heading h2,
.about-copy h2,
.support-copy h2 {
    margin-top: 8px;
    font-size: clamp(19px, 2.6vw, 30px);
    line-height: 1.2;
    font-weight: 800;
    color: #161d10;
}

.section-heading p:last-child,
.about-copy p,
.support-copy p,

.contact-info p,
.location-copy p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    gap: 30px;
}

.about-copy {
    position: relative;
}

/* 首行缩进：.about-copy 下的段落开头空两格 */
.about-copy p {
    text-indent: 2em;
}

.section-bg-title {
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #d7d7d7;
}

.stats-ribbon {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.stats-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -36px;
    width: 36px;
    height: 100%;
    background: inherit;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.about-media,
.image-card,
.product-card,
.feature-banner,
.map-card,
.contact-panel {
    border-radius: 0;
    overflow: hidden;
}

.about-media {
    background: var(--surface);
}

.image-grid {
    display: grid;
    gap: 12px;
}

.image-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card,
.product-card {
    background: var(--surface);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.image-card:hover,
.product-card:hover,
.map-card:hover {
    transform: none;
    box-shadow: none;
}

.image-card {
    border: 1px solid #e8e8e0;
}

.image-card img {
    width: 100%;
}

.store-caption {
    padding: 9px 10px 11px;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
    color: #777d70;
    background: #ffffff;
}

.products-section {
    background:
        radial-gradient(circle at center top, rgba(202, 227, 159, 0.16), transparent 28%),
        #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px 10px;
}

.franchise-section .section-heading {
    margin-bottom: 30px;
}

.feature-banner img,
.support-banner img,
.contact-building img {
    width: 100%;
    height: auto;
}

/* support media banner as background to allow cropping/control */
.support-media-banner {
    background-image: url("../images/supply-chain-banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 34.7%; /* preserve original aspect ratio 373/1075 */
    border-radius: 0;
}

/* restore default list style for support lists */
.support-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    color: var(--muted);
}
.support-list li {
    margin-bottom: 0.5rem;
}

.feature-banner,
.support-banner,
.about-media,
.map-card,
.image-card,
.product-card,
.framed {
    border-radius: 0;
    box-shadow: none;
}

.product-card {
    overflow: hidden;
}

.product-card img {
    width: 100%;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 10px;
    background: linear-gradient(90deg, #85b61d, #6a980f);
    color: #ffffff;
    font-size: 11px;
    line-height: 1.4;
}

.product-meta span:last-child {
    font-size: 10px;
    opacity: 0.7;
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.support-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8abe20, #6d9b10);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.support-mark {
    color: var(--green-dark);
    font-size: 16px;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.support-block {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.support-index {
    margin-bottom: 4px;
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    color: rgba(126, 178, 26, 0.13);
}

.support-copy.compact {
    max-width: 480px;
}

.support-list {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.support-list li {
    position: relative;
    padding-left: 2px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.support-media,
.framed,
.support-banner,
.feature-banner {
    background: var(--surface);
}

.framed {
    padding: 8px;
}

.compact-heading {
    margin-bottom: 12px;
}

.store-service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    padding: 12px 12px 0;
    background: var(--surface);
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    background: #ffffff;
}

.service-gallery img {
    width: 100%;
    border-radius: 0;
}

.service-note {
    margin-top: 0;
    padding: 8px 14px 10px;
    font-size: 18px;
    color: #eef6dc;
    text-align: center;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
}
#support_02 {
    background: #F6F6F6;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

/* contact icons as background images */
.contact-icon {
    width: calc(107px * 0.5);
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.contact-icon.site-selection-icon {
    background-image: url("../images/site-selection-icon.png");
    height: calc(105px * 0.5);
}
.contact-icon.consultation-phone-icon {
    background-image: url("../images/consultation-phone-icon.png");
    height: calc(107px * 0.5);
}

.contact-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #f4f7eb);
    box-shadow: none;
}

.contact-point img {
    width: 66px;
    height: auto;
    flex-shrink: 0;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    flex: 1 1 520px;
    min-width: 280px;
}
.location-media {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 360px;
    margin-top: 26px;
}
.location-media .map-card {
    width: 100%;
}

.map-card {
    background: var(--surface);
    box-shadow: none;
}

.map-card img {
    width: 100%;
    height: auto;
}

.small-map {
    width: min(100%, 345px);
}

.contact-section {
    overflow: hidden;
    isolation: isolate;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(107, 155, 14, 0.82), rgba(107, 155, 14, 0.84)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 30%);
}

.contact-shell {
    position: relative;
    z-index: 1;
}

.light .section-tag,
.light h2,
.light p {
    color: #ffffff;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 337px);
    background: transparent;
    box-shadow: none;
}

/* Ensure left building and right map are equal height and images cover */
.contact-panel {
    align-items: stretch;
    min-height: 305px;
}

.contact-building,
.contact-map {
    overflow: hidden;
}

/* 左侧保持原始宽高比，使用背景图 contain 保持比例不被裁切 */
.contact-building {
    background-image: url("../images/contact-building.png");
    background-repeat: no-repeat;
    background-position: center center;
    /* fill the 320px container while preserving image ratio */
    background-size: cover;
    padding: 0;
    height: 320px;
    width: 100%;
}

/* 右侧根据行高自适应，填满区域 */
.contact-map {
    background-image: url("../images/site-selection-map-large.png");
    background-repeat: no-repeat;
    background-position: center;
    /* cover fills available height and preserves aspect ratio */
    background-size: cover;
    align-self: stretch;
    width: 100%;
    min-height: 320px;
}

/* contact phone */
.contact-phone {
    margin-left: 80px;
    margin-top: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 22px);
}

/* footer / ICP */
/* back to top button */
#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8abe20, #6d9b10);
    color: #fff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    z-index: 60;
}

@media (max-width: 760px) {
    .contact-phone { margin:6px 18px; font-size: 18px; }
}


.footer-strip {
    background-image: url("../images/contact-footer-strip.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-strip-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.footer-strip .contact-phone {
    margin-left: 80px;
    margin-top: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 22px);
}

.contact-icp {
    text-align: center;
    margin: 12px 0 28px;
    color: #ffffff;
    font-size: 12px;
    z-index: 3;
}

.contact-icp a {
    color: #ffffff;
    text-decoration: none;
}

.beian {
    text-align: center;
    margin-top: 15px;
    color: #ffffff;
    font-size: 12px;
    z-index: 3;
}

.beian a {
    color: #ffffff;
    text-decoration: none;
}

/* stores image-cards: use background images and preserve aspect ratio */
.image-card {
    overflow: hidden;
}
.image-card-bg {
    width: 100%;
    /* 原始宽高比约 370x275 -> 275/370 ≈ 74.3% */
    padding-top: 74.3%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* 保持宽高比同时填充容器，可改为 contain 保留完整图片 */
}
.image-card-1 { background-image: url("../images/store-display-01.png"); }
.image-card-2 { background-image: url("../images/store-display-02.png"); }
.image-card-3 { background-image: url("../images/store-display-03.png"); }
.image-card-4 { background-image: url("../images/store-display-04.png"); }

/* product cards: use background images and preserve original aspect ratio (237x252) */
.product-card {
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
}
.product-card-bg {
    width: 100%;
    /* 252 / 237 ≈ 1.0633 -> 106.33% */
    padding-top: 106.33%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* 使用 cover 以填满容器并保持宽高比，使图片更大 */
}
.product-1 { background-image: url("../images/product-01-premium-platter.png"); }
.product-2 { background-image: url("../images/product-02-fruit-cup.png"); }
.product-3 { background-image: url("../images/product-03-fresh-platter.png"); }
.product-4 { background-image: url("../images/product-04-box-cut-fruit.png"); }
.product-5 { background-image: url("../images/product-05-fruit-box.png"); }
.product-6 { background-image: url("../images/product-06-colored-gift-box.png"); }
.product-7 { background-image: url("../images/product-07-deluxe-fruit-platter.png"); }
.product-8 { background-image: url("../images/product-08-gift-fruit.png"); }
.product-9 { background-image: url("../images/product-09-durian.png"); }
.product-10 { background-image: url("../images/product-10-cherry.png"); }
.product-11 { background-image: url("../images/product-11-fruit-gift.png"); }
.product-12 { background-image: url("../images/product-12-signature-platter.png"); }

/* green bar below product images */
.product-bar {
    width: 100%;
    background: var(--green);
    border-radius: 14px;
    margin: 12px 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}
.product-bar .product-meta {
    color: #ffffff;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

/* layout: two side-by-side blocks, each block contains 3 stacked product-cards */
.product-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.product-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.product-block .product-card { width: 100%; }

/* hide the green bar inside these blocks (暂时不需要文字) */
.product-block .product-bar { display: none; }

/* product pairs: three blocks side-by-side, each block contains 2 stacked cards */
.product-pairs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 18px;
}
.product-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.product-pair .product-card { width: 100%; }
.product-pair .product-bar { display: none; }

/* make cards larger on wide screens */
@media (min-width: 1200px) {
    .product-card { max-width: 380px; }
}
@media (max-width: 900px) {
    .product-card { max-width: 300px; }
}

@media (max-width: 900px) {
    .product-pairs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .product-blocks, .product-pairs { grid-template-columns: 1fr; }
}

/* small descriptor under blocks */
.desc {
    background-color: #7DAC28;
    color: #ffffff;
    padding: 6px 8px;
    border-radius: 8px;
    text-align: left;
    vertical-align: middle;
}

/* make desc span full width of its block */
.product-block .desc,
.product-pair .desc {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    position: relative;
}
.desc::after {
    content: "\2606\00a0\2606";
    font-size: 1.2em;
    color: #ffffff;
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-strip img {
    display: none;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    animation: reveal-up 0.45s ease forwards;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

.delay-3 {
    animation-delay: 0.36s;
}

@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .image-grid-4,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-grid,
    .support-block,
    .location-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .location-media {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 100% - 28px);
    }

    .topbar {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        padding: 12px 0 14px;
    }

    .brand img {
        width: min(82vw, 260px);
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 18px;
        font-size: 14px;
    }

    .hero,
    .hero-content {
        min-height: 500px;
    }

    .hero-copy {
        padding: 40px 0 32px;
    }

    .section {
        padding: 25px 0;
    }

    .stats-ribbon {
        display: grid;
        gap: 8px;
        padding-right: 22px;
        font-size: 20px;
    }

    .stats-ribbon::after {
        display: none;
    }

    .image-grid-4,
    .product-grid,
    .service-gallery,
    .location-media {
        grid-template-columns: 1fr;
    }

    .support-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-point {
        align-items: flex-start;
    }

    .contact-point img {
        width: 68px;
    }

    .contact-info {
        padding: 28px 22px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-info dd {
        font-size: 20px;
    }
}