  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: #fafafa;
            color: #111111;
            line-height: 1.6;
            overflow-x: hidden;
        }
        


        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e0e0e0;
            z-index: 1000;
            overflow: visible;
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 170px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: #111111;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .nav-links a:not(.nav-cta):hover {
            color: #666;
        }

        .nav-links a.active {
            color: #000;
            font-weight: 600;
        }

        .nav-cta {
            background: #111111;
            color: #ffffff !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
        }

        .nav-cta:hover {
            background: #000000;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Hero Section */

       .hero {
    padding: calc(180px + 40px) 60px 100px; /* top padding = nav height + spacing */
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}


        .hero-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .hero h1 {
            font-family: 'Instrument Serif', serif;
            font-size: 64px;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 28px;
            color: #111111;
        }

        .hero p {
            font-size: 22px;
            color: #666;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Story Section */
        .story-section {
            padding: 120px 60px;
            background: #ffffff;
        }

        .story-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-section h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 40px;
            color: #111111;
        }

        .story-content {
            font-size: 19px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .story-highlight {
            background: #f5f5f5;
            border-left: 4px solid #111111;
            padding: 40px;
            margin: 50px 0;
            border-radius: 8px;
        }

        .story-highlight p {
            font-size: 24px;
            font-style: italic;
            color: #111111;
            line-height: 1.6;
            font-family: 'Instrument Serif', serif;
        }

        /* Mission Vision Values */
        .mvv-section {
            padding: 120px 60px;
            background: #fafafa;
        }

        .mvv-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .mvv-card {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            padding: 50px;
            transition: all 0.3s ease;
        }

        .mvv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            border-color: #111111;
        }

        .mvv-icon {
            width: 64px;
            height: 64px;
            background: #111111;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #ffffff;
            margin-bottom: 30px;
        }

        .mvv-card h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #111111;
        }

        .mvv-card p {
            font-size: 17px;
            color: #666;
            line-height: 1.8;
        }

        /* Principles Section */
        .principles-section {
            padding: 120px 60px;
            background: #111111;
            color: #ffffff;
        }

        .principles-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .principles-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .principles-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .principles-header p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.7);
        }

        .principles-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .principle-item {
            border-left: 3px solid rgba(255, 255, 255, 0.3);
            padding-left: 30px;
            transition: all 0.3s ease;
        }

        .principle-item:hover {
            border-left-color: #ffffff;
        }

        .principle-number {
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .principle-item h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .principle-item p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 120px 60px;
            background: #ffffff;
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .timeline-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .timeline {
            position: relative;
            padding-left: 50px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: #e0e0e0;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -56px;
            top: 8px;
            width: 14px;
            height: 14px;
            background: #111111;
            border-radius: 50%;
            border: 3px solid #fafafa;
        }

        .timeline-year {
            font-size: 16px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 8px;
        }

        .timeline-title {
            font-size: 24px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 12px;
        }

        .timeline-description {
            font-size: 17px;
            color: #666;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 60px;
            background: #fafafa;
            text-align: center;
        }

        .cta-content h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 24px;
            color: #111111;
        }

        .cta-content p {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: #111111;
            color: #ffffff;
            padding: 16px 36px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        footer {
            background: #ffffff;
            border-top: 1px solid #e0e0e0;
            padding: 80px 60px 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand img {
            height: 170px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: #666;
            line-height: 1.7;
            max-width: 350px;
            font-size: 15px;
        }

        .footer-column h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111111;
        }

        .footer-column a {
            display: block;
            color: #666;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: #111111;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: #111111;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .mvv-grid {
                grid-template-columns: 1fr;
            }

            .principles-list {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 30px;
                height: 70px;
            }

            .nav-logo img {
                height: 120px;
            }

            .nav-links {
                gap: 20px;
            }

            .nav-links a {
                font-size: 14px;
            }

            .hero {
                padding: 140px 30px 80px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 18px;
            }

            .story-section, .mvv-section, .principles-section, .timeline-section, .cta-section {
                padding: 80px 30px;
            }

            .story-section h2, .principles-header h2, .timeline-header h2, .cta-content h2 {
                font-size: 36px;
            }

            .timeline {
                padding-left: 30px;
            }

            .timeline-item::before {
                left: -36px;
            }

            footer {
                padding: 60px 30px 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-brand img {
                height: 120px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* Fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }