/* Page: history */

:root {
            --primary-gold: #F5C745;
            --secondary-green: #2A5F2E;
            --bg-cream: #FAFAF8;
            --text-dark: #1A1A1A;
            --text-gray: #555555;
            --font-main: 'Noto Sans SC', sans-serif;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        body { 
            font-family: var(--font-main); 
            background-color: var(--bg-cream); 
            color: var(--text-dark); 
            line-height: 1.8; 
            padding-top: 80px; 
        }

        
        section {
            padding: 80px 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        
        .history__section-header {
            text-align: left; 
            margin-bottom: 50px;
            padding: 25px 30px; 
            border-left: 6px solid var(--primary-gold); 
            
            background: linear-gradient(90deg, #2A5F2E 0%, rgba(42, 95, 46, 0) 100%);
            border-radius: 0 8px 8px 0; 
        }
        .history__section-header h2 {
            font-size: 2rem; 
            color: #fff; 
            margin-bottom: 8px; 
            font-weight: 700;
        }
        .history__section-header p {
            color: #f0f0f0; 
            font-size: 0.95rem; 
            letter-spacing: 1px;
        }

        
        .history__history-content {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-top: 20px;
        }
        .history__history-image {
            flex: 1;
            height: 450px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: -20px 20px 0px var(--primary-gold);
        }
        .history__history-image img {
            width: 100%; height: 100%; object-fit: cover; filter: sepia(20%);
        }
        .history__history-text {
            flex: 1;
        }
        .history__history-text h3 {
            font-size: 1.8rem; color: var(--secondary-green); margin-bottom: 20px;
        }
        .history__history-text p {
            font-size: 1.1rem; color: var(--text-gray); margin-bottom: 20px; line-height: 1.8;
        }
        blockquote {
            background: #fff; padding: 20px; border-left: 4px solid var(--primary-gold);
            font-style: italic; margin: 30px 0; color: var(--secondary-green); font-weight: 500;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        
        .history__timeline {
            margin: 20px 0; padding-left: 30px; border-left: 2px solid var(--primary-gold);
        }
        .history__timeline-item {
            margin-bottom: 30px; position: relative;
        }
        .history__timeline-item::before {
            content: ''; position: absolute; left: -36px; top: 5px; width: 12px; height: 12px;
            border-radius: 50%; background-color: var(--secondary-green); border: 2px solid var(--primary-gold);
        }
        .history__timeline-item h4 {
            font-size: 1.2rem; color: var(--secondary-green); margin-bottom: 8px;
        }

        
        @media (max-width: 768px) {
            .site-header--static { padding: 15px 5%; }
            .site-header__brand { font-size: 1.5rem; }
            .site-header__seal { width: 25px; height: 25px; }
            
            section { padding: 60px 5%; }
            .history__history-content { flex-direction: column; }
            .history__history-image { width: 100%; height: 300px; }
            .history__timeline { padding-left: 20px; }
            .history__section-header { padding: 20px; }
        }
        nav {
            margin-left: auto;
        }
        @media (max-width: 860px) {
            .site-header--static { min-height: auto; gap: 0; }
            .site-header__menu { gap: 14px; }
            .site-header__link { font-size: 0.88rem; }
        }

        @media (max-width: 768px) {
            section {
                padding: 48px 5%;
            }

            .history__section-header {
                margin-bottom: 34px;
                padding: 18px 20px;
            }

            .history__section-header h2 {
                font-size: 1.65rem;
                line-height: 1.3;
            }

            .history__section-header p {
                font-size: 0.88rem;
                line-height: 1.6;
            }

            .history__history-content {
                gap: 32px;
            }

            .history__history-image {
                height: 280px;
                box-shadow: -10px 10px 0 var(--primary-gold);
            }

            .history__history-text h3 {
                font-size: 1.45rem;
            }

            .history__history-text p,
            blockquote {
                font-size: 0.98rem;
            }
        }

        @media (max-width: 480px) {
            .history__history-image {
                height: 230px;
            }

            .history__section-header {
                padding: 16px;
                border-left-width: 4px;
            }

            .history__timeline {
                padding-left: 18px;
            }

            .history__timeline-item::before {
                left: -24px;
            }
        }
