/* 1. Fonts */
@font-face {
    font-family: 'Satoshi-Custom';
    src: url('assets/font/Satoshi-BoldItalic.otf') format('opentype');
    font-weight: bold; font-style: italic; font-display: swap;
}

/* 2. Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #111; background-color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }

/* 3. Header */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}
.logo-container { display: flex; align-items: center; gap: 10px; }
.logo-svg { height: 28px; }
.logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; }
nav ul { display: flex; list-style: none; gap: 25px; }
nav a { font-size: 13px; font-weight: 500; text-transform: uppercase; color: #666; }

/* 4. Hero Section (Desktop) */
.hero { width: 100%; background-color: #111; }
.hero-content { display: flex; width: 100%; min-height: 80vh; flex-wrap: nowrap; }
.hero-text { flex: 1; min-width: 50%; color: #fff; padding: 80px 8%; display: flex; flex-direction: column; justify-content: center; }
.hero-text h1 { font-weight: 800; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.05; margin-bottom: 25px; letter-spacing: -2px; }
.hero-text p { font-size: 16px; opacity: 0.7; margin-bottom: 40px; }
.hero-image-area { flex: 1; min-width: 50%; height: 80vh; overflow: hidden; }
.hero-main-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.btn-white { background: #fff; color: #111; padding: 16px 35px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; width: fit-content; }

/* 5. Stats & Experience (Desktop) */
.stats-bar { background-color: #fbc3bc; padding: 35px 20px; text-align: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
.experience { padding: 100px 0; }
.experience .container { display: flex; max-width: 1200px; margin: 0 auto; padding: 0 40px; align-items: center; gap: 60px; flex-direction: row-reverse; }
.experience-content { flex: 1; }
.experience-content h2 { font-family: 'Satoshi-Custom', sans-serif; font-size: 3rem; font-style: italic; font-weight: bold; line-height: 1.1; margin-bottom: 25px; }
.experience-content p { font-size: 15px; color: #555; margin-bottom: 35px; }
.exp-img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
.btn-black { background: #111; color: #fff; padding: 16px 35px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; }

/* 6. Process Section (Desktop - Downgraded Height) */
.process {
    background-color: #fbc3bc;
    padding: 80px 5%; /* 从 160px 降低到 80px */
    text-align: center;
}
.process h2 {
    font-size: 2.5rem;
    margin-bottom: 60px; /* 从 100px 降低到 60px */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* 减小图标与文字的间距 */
}
.icon {
    height: 60px; /* 从 80px 降低到 60px */
    display: flex;
    align-items: center;
}
.svg-icon {
    width: 40px; /* 从 48px 降低到 40px */
    height: 40px;
}
.process-item p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   7. MOBILE OPTIMIZATION (PHONE PAGE)
   ========================================================================== */
@media (max-width: 768px) {
    header { padding: 15px 20px; }
    nav { display: none; }

    /* Hero Mobile */
    .hero-content { flex-direction: column; }
    .hero-image-area { min-width: 100%; height: 50vh; order: 1; }
    .hero-text { min-width: 100%; padding: 40px 20px; text-align: center; align-items: center; order: 2; }
    .hero-text h1 { font-size: 2.2rem; }

    /* Experience Mobile */
    .experience { padding: 60px 0; }
    .experience .container { flex-direction: column; text-align: center; padding: 0 20px; }
    .exp-img { height: auto; aspect-ratio: 3 / 4; margin-bottom: 20px; }
    .experience-content h2 { font-size: 2.4rem; }

    /* Process Section Mobile (Keep 5 in a row as requested) */
    .process {
        padding: 50px 10px;
    }
    .process h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }
    .process-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        max-width: 100%;
    }
    .process-item {
        gap: 8px;
    }
    .icon {
        height: 35px;
    }
    .svg-icon {
        width: 22px;
        height: 22px;
    }
    .process-item p {
        font-size: 9px;
        letter-spacing: 0;
        white-space: nowrap;
    }
}