﻿:root { --primary-color: rgb(0,0,0); --primary-hover: #333; --bg-light: #f5f5f7; --bg-white: #ffffff; --text-main: #1d1d1f; --text-muted: #86868b; --border-color: #e5e5ea; --accent-gold: #c5a977; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; color: var(--text-main); line-height: 1.6; background: var(--bg-white); }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--primary-color); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-weight: 500; font-size: 15px; color: var(--text-main); transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--accent-gold); }
        .header-actions { display: flex; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s; cursor: pointer; }
        .btn-primary { background: var(--primary-color); color: #fff; border: 1px solid var(--primary-color); }
        .btn-outline { background: transparent; color: var(--primary-color); border: 1px solid var(--primary-color); }
        .mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; background: none; border: none; color: var(--primary-color); }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 998; backdrop-filter: blur(4px); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: left 0.3s ease; display: flex; flex-direction: column; box-shadow: 2px 0 12px rgba(0,0,0,0.1); }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; background: none; border: none; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--bg-light); }
        
        footer { background: #111; color: #888; padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.6; }
        .footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; }

        
        .about-hero { background: var(--bg-light); padding: 100px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
        .about-hero h1 { font-size: 40px; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; }
        .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

        .about-section { padding: 80px 0; }
        .about-flex { display: flex; align-items: center; gap: 60px; }
        .about-flex.reverse { flex-direction: row-reverse; }
        .about-text { flex: 1; }
        .about-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; position: relative; padding-bottom: 15px; }
        .about-text h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--primary-color); }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
        .about-visual { flex: 1; }
        .visual-box { width: 100%; height: 400px; background: var(--bg-light); border-radius: 12px; position: relative; overflow: hidden; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; }
        .visual-box::before { content: ''; position: absolute; width: 200%; height: 200%; background: conic-gradient(from 90deg at 50% 50%, var(--bg-light) 0deg, #e0e0e0 180deg, var(--bg-light) 360deg); animation: spin 10s linear infinite; opacity: 0.3; }
        @keyframes spin { 100% { transform: rotate(360deg); } }
        .visual-icon { font-size: 80px; color: var(--primary-color); position: relative; z-index: 2; opacity: 0.8; font-weight: 900; }

        .core-values { background: var(--primary-color); color: #fff; padding: 80px 0; }
        .values-header { text-align: center; margin-bottom: 50px; }
        .values-header h2 { font-size: 32px; font-weight: 800; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .value-card { background: rgba(255,255,255,0.05); padding: 40px 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
        .value-num { font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.2); margin-bottom: 15px; line-height: 1; }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; font-weight: 700; color: var(--accent-gold); }
        .value-card p { font-size: 14px; color: #a1a1a6; }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions { display: none; }
            .mobile-menu-btn { display: block; }
            .about-flex, .about-flex.reverse { flex-direction: column; }
            .values-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
        }